:root {
  --paper: #f3f4f6;
  --surface: #ffffff;
  --line: rgba(16, 20, 26, 0.1);
  --line-strong: rgba(16, 20, 26, 0.18);
  --ink: #10141a;
  --subtle: #5e6672;
  --muted: #8a919c;
  --hero: #090d12;
  --hero-code: rgba(190, 214, 255, 0.58);
  --hero-soft: rgba(245, 247, 251, 0.78);
  --blue: #0a84ff;
  --blue-deep: #0065d1;
  --blue-soft: #dbe9ff;
  --orange: #ff7a00;
  --orange-soft: rgba(255, 122, 0, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --topbar-height: 70px;
  --app-dvh: 100vh;
  --viewport-bottom-inset: 0px;
  --font-sans-system: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display-system: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-sans: var(--font-sans-system);
  --font-display: var(--font-display-system);
  --font-mono: "SF Mono", "SFMono-Regular", "Envision SF Text", ui-monospace, monospace;
}

:root[data-webfont="loaded"] {
  --font-sans: "Envision SF Text", var(--font-sans-system);
  --font-display: "Envision SF Display", "Envision SF Text", var(--font-display-system);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #080808;
    --surface: #151515;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --ink: #f5f5f7;
    --subtle: #a1a1a6;
    --muted: #8e8e93;
    --blue-soft: rgba(10, 132, 255, 0.12);
    --orange-soft: rgba(255, 122, 0, 0.16);
  }
}

:root[data-theme="light"] {
  --paper: #f3f4f6;
  --surface: #ffffff;
  --line: rgba(16, 20, 26, 0.1);
  --line-strong: rgba(16, 20, 26, 0.18);
  --ink: #10141a;
  --subtle: #5e6672;
  --muted: #8a919c;
  --blue-soft: #dbe9ff;
  --orange-soft: rgba(255, 122, 0, 0.12);
}

:root[data-theme="dark"] {
  --paper: #080808;
  --surface: #151515;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f5f5f7;
  --subtle: #a1a1a6;
  --muted: #8e8e93;
  --blue-soft: rgba(10, 132, 255, 0.12);
  --orange-soft: rgba(255, 122, 0, 0.16);
}

@font-face {
  font-family: "Envision SF Text";
  src: url("../Resources/Font/Web/SF-Pro-Text-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Text";
  src: url("../Resources/Font/Web/SF-Pro-Text-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Text";
  src: url("../Resources/Font/Web/SF-Pro-Text-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Text";
  src: url("../Resources/Font/Web/SF-Pro-Text-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Display";
  src: url("../Resources/Font/Web/SF-Pro-Display-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Display";
  src: url("../Resources/Font/Web/SF-Pro-Display-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Display";
  src: url("../Resources/Font/Web/SF-Pro-Display-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Envision SF Display";
  src: url("../Resources/Font/Web/SF-Pro-Display-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-synthesis: none;
  transition: background-color 220ms ease, color 220ms ease;
}

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

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

button,
.button,
input,
select,
textarea {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-sans);
}

.wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-filled {
  color: #ffffff;
  background: var(--blue);
}

.button-filled:hover,
.button-filled:focus-visible {
  background: var(--blue-deep);
}

.button-success {
  color: #ffffff;
  background: #34c759;
}

.button-success:hover,
.button-success:focus-visible {
  background: #28b24a;
}

.button-danger {
  color: #ffffff;
  background: #d70015;
}

.button-danger:hover,
.button-danger:focus-visible {
  background: #b90012;
}

.button-ghost {
  border: 1px solid currentColor;
  background: transparent;
}

.site-shell {
  overflow: clip;
}

.topbar-host {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
}

.home-recognition-bar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 52;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-recognition-bar-inner {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  width: auto;
  max-width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(16, 20, 26, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 14px rgba(16, 20, 26, 0.04);
  backdrop-filter: blur(18px);
  pointer-events: none;
  color: inherit;
  transition: transform 220ms ease, border-radius 220ms ease, min-height 220ms ease,
    padding 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.home-recognition-bar-inner.wrap {
  width: auto;
  max-width: min(100% - 40px, 760px);
}

.home-recognition-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-recognition-bar.is-visible .home-recognition-bar-inner {
  pointer-events: auto;
  animation: recognitionPillSettle 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-recognition-bar.is-compact .home-recognition-bar-inner {
  min-height: 32px;
  padding: 5px 12px 5px 9px;
  transform: translateY(-3px) scale(0.985);
  box-shadow: 0 4px 12px rgba(16, 20, 26, 0.04);
}

.home-recognition-bar.is-hidden {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

.home-recognition-copy {
  min-width: 0;
  max-width: 560px;
  overflow: hidden;
  opacity: 1;
}

.home-recognition-bar.is-visible .home-recognition-copy {
  animation: recognitionCopyReveal 380ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.apple-official-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9em;
  height: 1.9em;
  border-radius: 999px;
  background: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.apple-official-glyph {
  display: inline-block;
  color: #ffffff;
  font-size: 0.9em;
  line-height: 1;
  transform: translate(-0.02em, -0.06em);
}

:root[data-theme="dark"] .apple-official-mark {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .apple-official-glyph {
  color: #000000;
}

.home-recognition-symbol {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  line-height: 1;
  animation: recognitionSymbolPulse 520ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.home-recognition-symbol.apple-official-mark {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.home-recognition-symbol .apple-official-glyph {
  color: #000000;
  font-size: 1em;
  transform: translate(0, 0);
}

:root[data-theme="dark"] .home-recognition-symbol .apple-official-glyph {
  color: #ffffff;
}

.home-recognition-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

:root[data-theme="dark"] .home-recognition-bar-inner {
  border-color: rgba(230, 236, 245, 0.08);
  background: rgba(20, 25, 34, 0.72);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

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

@keyframes recognitionSymbolPulse {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes recognitionPillSettle {
  0% {
    padding-right: 10px;
  }
  70% {
    padding-right: 10px;
  }
  100% {
    padding-right: 14px;
  }
}

@keyframes recognitionCopyReveal {
  0% {
    max-width: 0;
    opacity: 0;
  }
  100% {
    max-width: 560px;
    opacity: 1;
  }
}

.topbar-shell {
  width: 100%;
}

.topbar {
  width: 100%;
  min-height: var(--topbar-height);
  color: #f5f7fb;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

:root[data-theme="dark"] .topbar,
:root[data-theme="dark"] .topbar.is-solid {
  border-bottom-color: rgba(214, 228, 255, 0.1);
  background: rgba(9, 13, 18, 0.82);
  backdrop-filter: blur(16px);
}

.topbar.is-solid {
  border-bottom-color: rgba(214, 228, 255, 0.1);
  background: rgba(9, 13, 18, 0.82);
  backdrop-filter: blur(16px);
}

.status-body .topbar,
.status-body .topbar.is-solid {
  color: var(--ink);
  border-bottom-color: rgba(16, 20, 26, 0.08);
  background: rgba(243, 244, 246, 0.92);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  width: min(calc(100% - 28px), 1680px);
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topbar-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.topbar-notification-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.topbar-notification-icon {
  font-size: 1.02rem;
  line-height: 1;
}

.topbar-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  min-height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff3b30;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
}

.topbar-notification-panel {
  position: absolute;
  top: calc(var(--topbar-height) - 6px);
  right: max(14px, calc((100vw - min(calc(100% - 28px), 1680px)) / 2 + 14px));
  width: min(420px, calc(100vw - 28px));
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
}

.topbar-notification-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar-notification-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.topbar-notification-panel-head strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.topbar-notification-panel-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar-notification-list {
  display: grid;
  gap: 10px;
  max-height: min(420px, 58vh);
  overflow: auto;
}

.topbar-notification-item {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
  color: inherit;
}

.topbar-notification-item.is-unread {
  background: rgba(10, 132, 255, 0.08);
}

.topbar-notification-copy {
  display: grid;
  gap: 4px;
}

.topbar-notification-copy strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.topbar-notification-copy p,
.topbar-notification-copy span {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.topbar-notification-copy span {
  font-size: 0.76rem;
}

.topbar-notification-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.topbar-account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: inherit;
}

.topbar-account-copy {
  display: grid;
  gap: 2px;
}

.topbar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.topbar-account strong,
.topbar-mobile-account strong {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topbar-account span,
.topbar-mobile-account span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.topbar-account strong {
  color: #ffffff;
}

.topbar-user .button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.status-body .topbar-user,
.auth-body .topbar-user,
:root[data-theme="dark"] .topbar-user {
  color: var(--ink);
}

:root[data-theme="dark"] .topbar-notification-toggle,
.status-body .topbar-notification-toggle,
.auth-body .topbar-notification-toggle {
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .topbar-notification-panel {
  background: rgba(18, 18, 20, 0.96);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.44);
}

:root[data-theme="dark"] .topbar-notification-item {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .topbar-notification-item.is-unread {
  background: rgba(10, 132, 255, 0.12);
}

:root[data-theme="dark"] .topbar-notification-copy p,
:root[data-theme="dark"] .topbar-notification-copy span,
:root[data-theme="dark"] .topbar-notification-panel-note,
:root[data-theme="dark"] .topbar-notification-empty {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .topbar-notification-copy strong,
:root[data-theme="dark"] .topbar-notification-panel-head strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] .notification-prompt-card {
  background: rgba(18, 18, 20, 0.96);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46);
}

:root[data-theme="dark"] .notification-prompt-card h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .notification-prompt-card p {
  color: rgba(245, 245, 247, 0.72);
}

.status-body .topbar-account strong,
.auth-body .topbar-account strong,
:root[data-theme="dark"] .topbar-account strong {
  color: var(--ink);
}

.status-body .topbar-account span,
.auth-body .topbar-account span,
:root[data-theme="dark"] .topbar-account span {
  color: var(--subtle);
}

.status-body .topbar-user .button-ghost,
.auth-body .topbar-user .button-ghost,
:root[data-theme="dark"] .topbar-user .button-ghost {
  color: var(--ink);
  border-color: currentColor;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.topbar-group,
.topbar-mobile-group {
  display: grid;
  gap: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-nav a,
.topbar-links a {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.topbar-link-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  align-self: center;
}

.topbar-link-stack span {
  display: block;
}

.topbar-link-stack small {
  position: absolute;
  left: 0;
  top: -0.82rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.topbar-mobile-link-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  justify-self: start;
  width: auto;
  min-width: 0;
}

.topbar-mobile-link-meta small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible,
.topbar-nav a.is-active {
  opacity: 1;
}

.topbar-link-stack.is-active,
.topbar-mobile-link-meta.is-active {
  opacity: 1;
}

.topbar-mobile-controls,
.topbar-mobile-panel {
  display: none;
}

.topbar-mobile-controls {
  align-items: center;
  gap: 10px;
}

.topbar-mobile-signup {
  min-height: 40px;
  padding-inline: 14px;
}

.topbar-mobile-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.topbar-mobile-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.topbar-mobile-panel {
  width: 100%;
  max-height: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease, max-height 260ms ease,
    padding-top 260ms ease, padding-bottom 260ms ease;
}

.notification-prompt-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.notification-prompt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.notification-prompt-card {
  position: relative;
  width: min(460px, calc(100vw - 28px));
  margin: min(14vh, 120px) auto 0;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
}

.notification-prompt-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.notification-prompt-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.notification-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-promo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  max-height: 0;
  padding-block: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-top 260ms ease, padding-bottom 260ms ease;
}

.topbar-ad {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-shell.is-promo-open .topbar-ad {
  max-height: 58px;
  opacity: 1;
  transform: translateY(0);
}

.topbar-promo-mark {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.topbar-promo-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.topbar-promo-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-promo-text {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-promo-button {
  min-height: 34px;
  padding-inline: 14px;
}

.topbar-promo-close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
}

.topbar-shell.is-promo-open .topbar-ad {
  background: linear-gradient(180deg, rgba(47, 125, 246, 0.98), rgba(24, 96, 226, 0.98));
}

.status-body .topbar-promo-mark,
.auth-body .topbar-promo-mark,
:root[data-theme="dark"] .topbar-promo-mark {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.status-body .topbar-promo-label,
.auth-body .topbar-promo-label,
:root[data-theme="dark"] .topbar-promo-label {
  color: var(--muted);
}

.status-body .topbar-promo-text,
.auth-body .topbar-promo-text,
:root[data-theme="dark"] .topbar-promo-text {
  color: var(--ink);
}

.status-body .topbar-shell.is-promo-open .topbar-ad,
.auth-body .topbar-shell.is-promo-open .topbar-ad,
:root[data-theme="dark"] .topbar-shell.is-promo-open .topbar-ad {
  background: linear-gradient(180deg, rgba(47, 125, 246, 0.96), rgba(24, 96, 226, 0.98));
}

.topbar-shell.is-promo-open .topbar-promo-label {
  color: rgba(255, 255, 255, 0.72);
}

.topbar-shell.is-promo-open .topbar-promo-text,
.topbar-shell.is-promo-open .topbar-promo-close {
  color: #ffffff;
}

.status-body .topbar-shell.is-promo-open .topbar-promo-label,
.auth-body .topbar-shell.is-promo-open .topbar-promo-label,
:root[data-theme="dark"] .topbar-shell.is-promo-open .topbar-promo-label {
  color: rgba(255, 255, 255, 0.72);
}

.status-body .topbar-shell.is-promo-open .topbar-promo-text,
.auth-body .topbar-shell.is-promo-open .topbar-promo-text,
:root[data-theme="dark"] .topbar-shell.is-promo-open .topbar-promo-text,
.status-body .topbar-shell.is-promo-open .topbar-promo-close,
.auth-body .topbar-shell.is-promo-open .topbar-promo-close,
:root[data-theme="dark"] .topbar-shell.is-promo-open .topbar-promo-close {
  color: #ffffff;
}

.topbar-mobile-nav {
  display: grid;
  gap: 16px;
  align-content: start;
}

.topbar-mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: inherit;
  font-size: 1.08rem;
  font-weight: 500;
}

.topbar-mobile-link-meta {
  justify-content: space-between;
  gap: 12px;
}

.topbar-mobile-link-meta small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.topbar-mobile-group {
  gap: 10px;
}

.topbar-mobile-account {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-actions .button-ghost {
  color: #f5f7fb;
}

.status-body .topbar-actions .button-ghost {
  color: var(--ink);
}

.signed-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.signed-account {
  display: grid;
  gap: 4px;
  min-width: 220px;
  color: inherit;
}

.signed-account strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
}

.signed-account span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.home-page .signed-actions .button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.home-page.is-authenticated .join-cue {
  display: none;
}

.home-page {
  background: var(--paper);
}

.home-page.is-home-dashboard .home-recognition-bar {
  display: none;
}

.home-dashboard {
  padding: calc(var(--topbar-height) + 40px) 0 76px;
}

.home-dashboard-inner {
  display: grid;
  gap: 22px;
}

.home-dashboard-main {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.home-dashboard-phase-column {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 18px;
  border-top: 2px solid rgba(15, 23, 42, 0.18);
}

.home-dashboard-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.home-dashboard-header-copy {
  display: grid;
  align-content: start;
}

.home-dashboard-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.home-dashboard-title-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 999px;
}

.home-dashboard-header-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.home-dashboard-header-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-dashboard-header-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.home-dashboard-greeting {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: none;
}

.home-dashboard-welcome-link {
  min-height: 34px;
  padding: 0 14px;
  border-color: rgba(15, 23, 42, 0.1);
}

.home-dashboard-header-copy p {
  margin: 10px 0 0;
  max-width: 40rem;
  color: var(--subtle);
  font-size: 0.98rem;
  line-height: 1.64;
}

.home-dashboard-header-links {
  margin-top: 16px;
}

.home-dashboard-header-meta,
.home-dashboard-phase-card,
.home-dashboard-activity-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.home-dashboard-header-meta {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-dashboard-date-card {
  width: 116px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0 0 12px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.home-dashboard-date-card-month {
  width: 100%;
  padding: 10px 12px 9px;
  background: #ff453a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-dashboard-date-card-day {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.88;
  margin-top: 4px;
}

.home-dashboard-date-card-weekday {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.home-dashboard-date-label {
  display: none;
}

.home-dashboard-header-meta > strong[data-home-dashboard-date] {
  display: none;
}

.home-dashboard-header-meta strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-dashboard-live-copy {
  width: 188px;
  color: var(--subtle);
  font-size: 0.76rem;
  line-height: 1.42;
  text-align: center;
}

.home-dashboard-status-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  flex-wrap: wrap;
}

.home-dashboard-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
}

.home-dashboard-status-pill-main {
  width: 100%;
  max-width: 280px;
}

.home-dashboard-status-pill[data-tone="active"] {
  background: rgba(52, 199, 89, 0.14);
  color: #248a46;
}

.home-dashboard-status-pill[data-tone="upcoming"] {
  background: rgba(255, 159, 10, 0.14);
  color: #b96d00;
}

.home-dashboard-status-pill[data-tone="current"] {
  background: rgba(10, 132, 255, 0.14);
  color: #0a63c7;
}

.home-dashboard-status-pill[data-tone="ended"] {
  background: rgba(120, 120, 128, 0.14);
  color: #6b7280;
}

.home-dashboard-time-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #34c759;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.home-dashboard-time-pill.is-meta {
  background: #000000;
  color: #ffffff;
}

.home-dashboard-actions,
.home-dashboard-panel-actions,
.home-dashboard-activity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-dashboard-actions-bottom {
  margin-top: 28px;
  justify-content: center;
}

.home-dashboard-actions-top {
  margin-top: 0;
}

.home-dashboard-return-float {
  position: fixed;
  right: 22px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  min-height: 48px;
  padding-inline: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.home-dashboard-return-float[hidden] {
  display: none !important;
}

.home-page.is-home-intro-authenticated .home-dashboard-return-float:not([hidden]) {
  display: inline-flex !important;
}

.home-dashboard-section-head {
  display: grid;
  justify-content: start;
  gap: 4px;
}

.home-dashboard-section-head h2,
.home-dashboard-section-head h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 1.8vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-dashboard-section-head p {
  display: none;
}

.home-dashboard-section-head-panel {
  display: grid;
  justify-content: start;
  gap: 4px;
  padding-top: 0;
  border-top: 0;
}

.home-dashboard-section-head-panel p {
  display: none;
}

.home-dashboard-phase-countdown {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 18px 0 0;
  border-top: 2px solid rgba(15, 23, 42, 0.18);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.home-dashboard-phase-countdown > *:not(.home-dashboard-countdown-confetti) {
  position: relative;
  z-index: 1;
}

.home-dashboard-countdown-confetti {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-dashboard-countdown-logo {
  display: none;
  width: 76px;
  height: 76px;
  border-radius: 999px;
}

.home-dashboard-phase-countdown[data-state="live"],
.home-dashboard-phase-countdown[data-state="ended"] {
  justify-items: center;
  text-align: center;
  min-height: 280px;
  align-content: center;
  gap: 10px;
}

.home-dashboard-phase-countdown[data-state="live"] .home-dashboard-countdown-logo,
.home-dashboard-phase-countdown[data-state="ended"] .home-dashboard-countdown-logo {
  display: block;
}

.home-dashboard-phase-countdown[data-state="live"] h2,
.home-dashboard-phase-countdown[data-state="ended"] h2 {
  max-width: 16ch;
  text-align: center;
}

.home-dashboard-phase-countdown[data-state="live"] p,
.home-dashboard-phase-countdown[data-state="ended"] p {
  max-width: 42rem;
  text-align: center;
}

.home-dashboard-phase-countdown[data-state="live"] .home-dashboard-countdown-confetti {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.home-dashboard-phase-countdown h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.home-dashboard-phase-countdown-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-dashboard-phase-countdown-unit {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 16px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.home-dashboard-phase-countdown-unit strong {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 1em;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(7.5rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: #000000;
  transform-origin: center;
}

.home-dashboard-phase-countdown-unit strong .countdown-digit-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-dashboard-phase-countdown-unit strong .countdown-digit-face.is-current {
  transform: translateY(0%);
  opacity: 1;
}

.home-dashboard-phase-countdown-unit strong .countdown-digit-face.is-next {
  transform: translateY(100%);
  opacity: 0.9;
}

.home-dashboard-phase-countdown-unit strong.is-ticking .countdown-digit-face.is-current {
  transform: translateY(-100%);
  opacity: 0.22;
}

.home-dashboard-phase-countdown-unit strong.is-ticking .countdown-digit-face.is-next {
  transform: translateY(0%);
  opacity: 1;
}

.home-dashboard-phase-countdown-unit span {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-dashboard-phase-countdown p {
  margin: 0;
  color: var(--subtle);
  font-size: 1.02rem;
  line-height: 1.5;
}

.home-dashboard-phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 880px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px 4px 2px 0;
  scrollbar-width: thin;
}

.home-dashboard-phase-grid::-webkit-scrollbar {
  width: 8px;
}

.home-dashboard-phase-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  min-height: 224px;
  padding: 0 20px 20px;
  border-radius: 28px;
  font: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-dashboard-phase-card:hover,
.home-dashboard-phase-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.home-dashboard-phase-card.is-selected {
  box-shadow:
    0 0 0 3px rgba(10, 132, 255, 0.96),
    0 14px 28px rgba(15, 23, 42, 0.08);
}

.home-dashboard-phase-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 36px);
  min-height: 34px;
  margin: 0 -18px;
  padding: 8px 18px;
  border-radius: 0;
  background: #f0433a;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-dashboard-phase-card[data-tone="ended"] .home-dashboard-phase-state {
  background: #7b7b80;
  color: #ffffff;
}

.home-dashboard-phase-card[data-tone="upcoming"] .home-dashboard-phase-state {
  background: #ff9f0a;
  color: #ffffff;
}

.home-dashboard-phase-card strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.home-dashboard-phase-date {
  color: var(--subtle);
  font-size: 0.98rem;
  line-height: 1.35;
}

.home-dashboard-phase-note {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.home-dashboard-phase-card[data-phase-key="before-start"] .home-dashboard-phase-note {
  background: rgba(255, 159, 10, 0.14);
  color: #a35d00;
}

.home-dashboard-phase-card[data-phase-key="monday"] .home-dashboard-phase-note {
  background: rgba(52, 199, 89, 0.14);
  color: #1f8a43;
}

.home-dashboard-phase-card[data-phase-key="tuesday"] .home-dashboard-phase-note,
.home-dashboard-phase-card[data-phase-key="wednesday"] .home-dashboard-phase-note,
.home-dashboard-phase-card[data-phase-key="thursday"] .home-dashboard-phase-note {
  background: rgba(10, 132, 255, 0.14);
  color: #0a63c7;
}

.home-dashboard-phase-card[data-phase-key="friday"] .home-dashboard-phase-note {
  background: rgba(255, 45, 85, 0.14);
  color: #c0264b;
}

.home-dashboard-phase-card[data-phase-key="ended"] .home-dashboard-phase-note {
  background: rgba(120, 120, 128, 0.14);
  color: #666a73;
}

.home-dashboard-phase-blurb {
  color: var(--subtle);
  font-size: 0.94rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  display: block;
  overflow: visible;
}

.home-dashboard-phase-count {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-dashboard-phase-dots {
  display: none;
}

.home-dashboard-phase-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
}

.home-dashboard-phase-dot.is-selected {
  width: 22px;
  background: #0a84ff;
}

.home-dashboard-panel {
  display: grid;
  gap: 16px;
  padding: 18px 0 0;
  border-top: 2px solid rgba(15, 23, 42, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-dashboard-panel.is-phase-switching .home-dashboard-panel-head,
.home-dashboard-panel.is-phase-switching .home-dashboard-section-head-panel,
.home-dashboard-panel.is-phase-switching .home-dashboard-activity-list {
  animation: home-dashboard-panel-swap 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes home-dashboard-panel-swap {
  0% {
    opacity: 0.24;
    transform: translateY(14px) scale(0.988);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-dashboard-panel-head {
  display: grid;
  gap: 6px;
}

.home-dashboard-panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.home-dashboard-panel-head p {
  margin: 0;
  max-width: 42rem;
  color: var(--subtle);
  font-size: 0.94rem;
  line-height: 1.54;
}

.home-dashboard-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-dashboard-meta-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(15, 23, 42, 0.04);
}

.home-dashboard-meta-item span {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-dashboard-meta-item strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.home-dashboard-activity-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-dashboard-activity-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-dashboard-activity-card:hover,
.home-dashboard-activity-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
}

.home-dashboard-activity-card[data-activity-key="community-forum"] {
  background: #ffffff;
}

.home-dashboard-activity-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: #3b82f6;
  font-size: clamp(1.7rem, 2.3vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-dashboard-activity-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.home-dashboard-activity-marker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--subtle);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-dashboard-activity-schedule,
.home-dashboard-activity-legacy,
.home-dashboard-activity-status,
.home-dashboard-activity-card p {
  color: var(--subtle);
}

.home-dashboard-activity-schedule {
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-dashboard-activity-legacy {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

.home-dashboard-activity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 120, 128, 0.12);
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-dashboard-activity-pill[data-tone="active"] {
  background: rgba(52, 199, 89, 0.12);
  color: #248a46;
}

.home-dashboard-activity-pill[data-tone="upcoming"] {
  background: rgba(255, 159, 10, 0.12);
  color: #b96d00;
}

.home-dashboard-activity-pill[data-tone="ended"] {
  background: rgba(120, 120, 128, 0.12);
  color: #6b7280;
}

.home-dashboard-activity-card p,
.home-dashboard-activity-status {
  margin: 0;
  line-height: 1.58;
}

.home-dashboard-activity-status {
  margin-top: 2px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--subtle);
  font-size: 0.9rem;
  line-height: 1.48;
}

.home-dashboard-activity-meta {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
}

.home-dashboard-activity-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.home-dashboard-activity-meta-row svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-dashboard-activity-meta-row strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.home-dashboard-activity-card-empty {
  grid-column: 1 / -1;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.home-welcome {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--topbar-height) + 52px) 0 72px;
  color: #f5f7fb;
  position: relative;
  overflow: hidden;
  background: #090c11;
}

.home-welcome::before,
.home-welcome::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-welcome::before {
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.42) 0%, rgba(7, 10, 16, 0.66) 100%),
    url("../Resources/wwdc26_large.jpg") center center / cover no-repeat;
  filter: blur(0px) brightness(0.82) saturate(0.72) grayscale(0.12);
  transform: scale(1);
  animation: home-welcome-blur-in 4.8s cubic-bezier(0.22, 0.72, 0.18, 1) 1.7s forwards;
}

.home-welcome::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.04), transparent 34%);
  opacity: 0;
  animation: home-welcome-overlay-in 2.6s ease 2.5s forwards;
}

.home-welcome-inner {
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.home-welcome-copy {
  max-width: 760px;
  text-align: center;
  animation: home-welcome-copy-in 1.65s cubic-bezier(0.2, 0.72, 0.16, 1) 2.4s both;
}

.home-welcome-brandrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.home-welcome-logo {
  width: min(210px, 42vw);
  margin: 0;
}

.home-welcome-avatar {
  width: min(96px, 20vw);
  height: min(96px, 20vw);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.home-welcome-titleline {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 12px;
}

.home-welcome-titleline strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-welcome-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-welcome-copy p {
  margin: 18px auto 0;
  max-width: 40rem;
  color: rgba(245, 247, 251, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

@keyframes home-welcome-blur-in {
  0% {
    filter: blur(0px) brightness(0.9) saturate(0.82) grayscale(0.08);
    transform: scale(1);
  }
  100% {
    filter: blur(22px) brightness(0.66) saturate(0.58) grayscale(0.2);
    transform: scale(1.045);
  }
}

@keyframes home-welcome-overlay-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes home-welcome-copy-in {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-splash {
  position: relative;
  height: 220vh;
  background: var(--hero);
  --hero-actions-height: 120px;
  --brand-scale: 1;
  --brand-shift-x: 0px;
  --brand-shift-y: 0px;
  --copy-shift-y: 0px;
  --copy-fade: 0;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  height: var(--app-dvh);
  overflow: hidden;
  background: #000;
}

.hero-sticky::before,
.hero-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-sticky::before {
  z-index: 0;
  background: none;
  opacity: 0;
  filter: none;
  transform: scale(1);
  transform-origin: center;
  animation: none;
}

.hero-sticky::after {
  z-index: 0;
  background: none;
  opacity: 0;
  animation: none;
}

.hero-code-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  display: block;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), #000 15%, #000 84%, rgba(0, 0, 0, 0.34));
}

.hero-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.7vw, 22px);
  z-index: 2;
  transform: translate(
      calc(-50% + var(--brand-shift-x)),
      calc(-50% + var(--brand-shift-y))
    )
    scale(var(--brand-scale));
  transform-origin: center;
  will-change: transform;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.28));
}

.hero-mark {
  width: min(42vw, 590px);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
}

.hero-year {
  color: #f5f7fb;
  font-family: var(--font-display);
  font-size: min(20vw, 258px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.hero-copy {
  position: absolute;
  left: min(5vw, 48px);
  bottom: min(6vw, 48px);
  z-index: 3;
  max-width: 540px;
  color: #f5f7fb;
  transform: translateY(var(--copy-shift-y));
  opacity: calc(1 - var(--copy-fade));
  will-change: transform, opacity;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.06em;
  color: rgba(245, 247, 251, 0.96);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  animation: heroLabelEnter 720ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.hero-label-mobile {
  display: none;
}

.hero-label-icon {
  flex-shrink: 0;
  margin-right: 0.1rem;
  font-size: 0.84rem;
  line-height: 1;
  color: rgba(245, 247, 251, 0.96);
}

.hero-label-apple {
  font-size: 0.84rem;
  line-height: 1;
  color: rgba(245, 247, 251, 0.96);
}

.hero-accent-row {
  margin-top: 10px;
}

.event-accent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.event-accent-row-tight {
  margin-top: 14px;
}

.event-accent-pair {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.event-accent-row-center {
  justify-content: center;
}

.event-accent {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--orange-soft);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.28vw, 1.16rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.event-accent[data-tone="active"] {
  background: rgba(48, 209, 88, 0.14);
  color: #1f8f45;
}

.event-accent[data-tone="ended"] {
  background: rgba(255, 59, 48, 0.14);
  color: #c9342d;
}

.event-accent-blue {
  background: rgba(10, 132, 255, 0.14);
  color: var(--blue);
}

.event-accent-apple {
  gap: 6px;
  background: color-mix(in srgb, var(--surface) 78%, var(--paper) 22%);
  color: var(--ink);
  border: 1px solid var(--line);
}

.event-accent-apple-mark {
  flex-shrink: 0;
  width: 1.28em;
  height: 1.28em;
  font-size: 0.78rem;
}

.hero-event-accent-link {
  gap: 6px;
  margin-top: 14px;
  width: fit-content;
  max-width: min(100%, 380px);
  text-decoration: none;
}

.hero-event-accent-logo {
  flex-shrink: 0;
  font-size: 0.92rem;
  line-height: 1;
  margin-inline-end: 0.24em;
}

@keyframes heroLabelEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy h1,
.section-title h2,
.story-intro h2,
.activity-heading h2,
.activity-face h3,
.detail-intro h2,
.status-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(4.15rem, 8.35vw, 7.55rem);
  font-weight: 700;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 0.18ch;
  row-gap: 0;
  white-space: normal;
  position: relative;
  max-width: 100%;
  transition:
    font-family 0.085s linear,
    letter-spacing 0.085s cubic-bezier(0.4, 0, 0.2, 1),
    font-weight 0.085s cubic-bezier(0.4, 0, 0.2, 1),
    font-style 0.085s linear,
    transform 0.085s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: font-family, letter-spacing, font-weight, transform;
}

.hero-copy h1.is-font-transitioning {
  transform: translateY(-0.008em) scale(0.996);
}

.hero-copy h1::before {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.24em;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.82) rotate(-1.2deg);
  transform-origin: center;
  transition: opacity 0.16s ease, transform 0.18s ease, background 0.18s ease;
  z-index: -1;
  pointer-events: none;
}

.hero-copy h1[data-font-step="12"]::before,
.hero-copy h1[data-font-step="14"]::before,
.hero-copy h1[data-font-step="16"]::before,
.hero-copy h1[data-font-step="18"]::before {
  opacity: 0.95;
  transform: scaleX(1) rotate(-1.2deg);
}

.hero-copy h1[data-font-step="12"]::before {
  background: rgba(255, 236, 84, 0.72);
}

.hero-copy h1[data-font-step="14"]::before {
  background: rgba(119, 255, 206, 0.62);
}

.hero-copy h1[data-font-step="16"]::before {
  background: rgba(255, 147, 196, 0.58);
}

.hero-copy h1[data-font-step="18"]::before {
  background: rgba(120, 187, 255, 0.62);
}

.hero-word,
.hero-lockup {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy h1[data-font-step="1"] {
  font-family: "Envision SF Text", var(--font-sans);
  letter-spacing: -0.03em;
  font-weight: 650;
  font-style: normal;
  transform: translateY(-0.01em) scale(1.004);
}

.hero-copy h1[data-font-step="2"] {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: -0.055em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.005em) scale(0.998);
}

.hero-copy h1[data-font-step="3"] {
  font-family: "Avenir Next Condensed", "Arial Narrow", var(--font-display);
  letter-spacing: -0.075em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.012em) scale(1.006);
}

.hero-copy h1[data-font-step="4"] {
  font-family: ui-monospace, "SF Mono", "SFMono-Regular", monospace;
  letter-spacing: -0.05em;
  font-weight: 650;
  font-style: normal;
  transform: translateY(0.008em) scale(0.996);
}

.hero-copy h1[data-font-step="5"] {
  font-family: "Trebuchet MS", "Arial", sans-serif;
  letter-spacing: -0.06em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.008em) scale(1.004);
}

.hero-copy h1[data-font-step="6"] {
  font-family: "Palatino", "Book Antiqua", serif;
  letter-spacing: -0.05em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.004em) scale(0.999);
}

.hero-copy h1[data-font-step="7"] {
  font-family: "Envision SF Text", var(--font-sans);
  letter-spacing: -0.035em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.006em) scale(1.003);
}

.hero-copy h1[data-font-step="8"] {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  letter-spacing: -0.07em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.014em) scale(1.01);
}

.hero-copy h1[data-font-step="9"] {
  font-family: "Gill Sans", "Avenir Next", "Trebuchet MS", sans-serif;
  letter-spacing: -0.045em;
  font-weight: 600;
  font-style: normal;
  transform: translateY(0.002em) scale(0.997);
}

.hero-copy h1[data-font-step="10"] {
  font-family: "Baskerville", "Times New Roman", serif;
  letter-spacing: -0.05em;
  font-weight: 700;
  font-style: italic;
  transform: translateY(-0.01em) scale(1.004);
}

.hero-copy h1[data-font-step="11"] {
  font-family: "Futura", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.065em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.004em) scale(1.006);
}

.hero-copy h1[data-font-step="12"] {
  font-family: "Impact", "Arial Black", sans-serif;
  letter-spacing: -0.08em;
  font-weight: 800;
  font-style: normal;
  transform: translateY(-0.016em) scale(1.012);
}

.hero-copy h1[data-font-step="13"] {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  letter-spacing: -0.035em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.01em) rotate(-1deg) scale(0.996);
}

.hero-copy h1[data-font-step="14"] {
  font-family: "Papyrus", "Marker Felt", fantasy;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.01em) scale(1.01);
}

.hero-copy h1[data-font-step="15"] {
  font-family: "Chalkduster", "Marker Felt", fantasy;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.006em) rotate(0.6deg) scale(1.002);
}

.hero-copy h1[data-font-step="16"] {
  font-family: "Marker Felt", "Comic Sans MS", cursive;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.01em) rotate(-0.7deg) scale(1.006);
}

.hero-copy h1[data-font-step="17"] {
  font-family: "Bradley Hand", "Chalkboard SE", cursive;
  letter-spacing: -0.035em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.008em) rotate(0.9deg) scale(1.004);
}

.hero-copy h1[data-font-step="18"] {
  font-family: "Chicago", "Geneva", "Lucida Grande", sans-serif;
  letter-spacing: -0.045em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.012em) scale(1.006);
}

.hero-copy h1[data-font-step="19"] {
  font-family: "Monaco", "SF Mono", "SFMono-Regular", monospace;
  letter-spacing: -0.055em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(0.004em) scale(0.998);
}

.hero-copy h1[data-font-step="20"] {
  font-family: "American Typewriter", "Courier", serif;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-style: normal;
  transform: translateY(-0.008em) scale(1.004);
}

.hero-copy h1[data-font-step="18"]::after {
  content: " ⌘";
  display: inline-block;
  margin-left: 0.14em;
  font-family: "Envision SF Text", var(--font-sans);
  font-size: 0.18em;
  letter-spacing: 0;
  vertical-align: top;
}

.hero-emoji-title {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.96;
  transform: translateY(-0.02em);
  max-width: 2.8em;
  gap: 0.06em 0.16em;
}

.hero-emoji-line {
  display: block;
  width: 100%;
  white-space: nowrap;
}

.hero-copy h1 .hero-blue {
  color: var(--blue);
}

.hero-copy p {
  margin: 14px 0 0;
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.96rem;
  line-height: 1.62;
  max-width: 50ch;
}

.hero-copy-mobile-short {
  display: none;
}

.hero-recognition {
  display: grid;
  gap: 12px;
  max-width: 392px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(9, 12, 18, 0.34);
  backdrop-filter: blur(18px);
}

.hero-recognition-kicker {
  color: rgba(255, 171, 89, 0.94);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-recognition p {
  margin: 0;
}

.hero-actions {
  position: absolute;
  right: min(5vw, 48px);
  bottom: min(6vw, 48px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 14, 20, 0.42);
  backdrop-filter: blur(18px);
}

@media (min-width: 641px) {
  .hero-actions {
    gap: 18px;
    padding: 16px 18px;
    animation: hero-actions-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
  }

  .hero-actions .button {
    min-height: 74px;
    padding: 0 38px;
    font-size: 1.12rem;
    border-radius: 999px;
  }
}

@keyframes hero-actions-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.94);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-lights-on {
  0% {
    opacity: 0;
    filter: brightness(0.08) saturate(0.75);
    transform: scale(1.015);
  }
  42% {
    opacity: 0.7;
    filter: brightness(0.7) saturate(0.96);
    transform: scale(1.008);
  }
  100% {
    opacity: 1;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1);
  }
}

@keyframes hero-liquid-reveal {
  0% {
    opacity: 0;
    transform: scale(1.15) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.08) translate3d(0, 0, 0);
  }
}

@keyframes hero-liquid-drift {
  0% {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
  25% {
    transform: scale(1.1) translate3d(1%, -1.3%, 0);
  }
  55% {
    transform: scale(1.085) translate3d(1.4%, 0.9%, 0);
  }
  100% {
    transform: scale(1.11) translate3d(-0.8%, 1.2%, 0);
  }
}

@keyframes hero-liquid-overlay-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hero-glow-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hero-subtle-flicker {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1);
  }
  9% {
    opacity: 0.985;
    filter: brightness(0.985) saturate(1);
    transform: scale(1.001);
  }
  12% {
    opacity: 1;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1);
  }
  38% {
    opacity: 0.992;
    filter: brightness(1) saturate(1.01);
    transform: scale(1.001);
  }
  42% {
    opacity: 1;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1);
  }
  74% {
    opacity: 0.988;
    filter: brightness(0.99) saturate(1);
    transform: scale(1.001);
  }
  78% {
    opacity: 1;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1);
  }
}

.hero-actions .button {
  min-height: 50px;
  padding: 0 20px;
  font-size: 0.94rem;
}

.hero-actions .button-ghost {
  color: #f5f7fb;
}

.content-block,
.section-shell {
  padding: 100px 0 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: start;
}

.section-kicker,
.story-kicker,
.activity-kicker,
.status-kicker {
  display: inline-block;
  color: var(--subtle);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-logo {
  width: clamp(48px, 6vw, 66px);
  margin: 28px 0 0;
}

.section-logo-side {
  width: clamp(160px, 19.2vw, 224px);
  margin-top: 34px;
}

.section-title h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-top: 12px;
  font-weight: 500;
}

.heading-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--blue);
}

.heading-symbol svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-title p,
.section-side p,
.story-stage-copy p,
.detail-intro p,
.detail-list p,
.status-copy p {
  margin: 16px 0 0;
  color: var(--subtle);
  line-height: 1.72;
}


.section-side strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.section-proof {
  margin-top: 18px;
  color: var(--text);
}

.section-proof a {
  color: var(--blue);
  text-decoration: none;
}

.section-proof a:hover {
  text-decoration: underline;
}

.apple-listing-shell {
  padding-top: 40px;
}

.apple-listing-block {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px 42px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, var(--paper) 2%), var(--surface));
  transform: translateY(var(--listing-shift-y, 0px));
}

.apple-listing-visual {
  display: grid;
  justify-items: center;
  gap: 26px;
  transform: translateY(var(--listing-visual-shift, 0px)) scale(var(--listing-visual-scale, 1));
  transition: transform 220ms ease-out;
}

.apple-listing-orbit {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.apple-listing-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: appleListingOrbitSpin 18s linear infinite;
  transform: scale(1.02);
}

.apple-listing-orbit-svg text {
  fill: color-mix(in srgb, var(--ink) 54%, transparent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apple-listing-core {
  width: 164px;
  height: 164px;
  font-size: 6.4rem;
}

.apple-listing-meetup-card {
  position: relative;
  display: block;
  width: min(100%, 292px);
  padding: 18px 20px 18px;
  border-radius: 24px;
  background: #000000;
  color: #ffffff;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.apple-listing-meetup-card:hover,
.apple-listing-meetup-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 34px rgba(255, 255, 255, 0.12);
}

.apple-listing-meetup-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1;
}

.apple-listing-meetup-kicker {
  display: inline-block;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.apple-listing-meetup-card h3 {
  margin: 10px 0 0;
  color: #4a90ff;
  font-family: var(--font-display);
  font-size: clamp(1.44rem, 2vw, 1.86rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.apple-listing-meetup-meta {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.apple-listing-meetup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.apple-listing-meetup-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.apple-listing-meetup-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apple-listing-content h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.apple-listing-lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.46rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.34;
}

.apple-listing-content p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--subtle);
  line-height: 1.72;
}

.apple-listing-content {
  transform: translateY(var(--listing-content-shift, 0px));
  transition: transform 220ms ease-out;
}

.apple-listing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

@keyframes appleListingOrbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.origin-shell {
  padding-top: 40px;
  min-height: 220vh;
}

.origin-sticky {
  position: sticky;
  top: calc(var(--topbar-height) + 42px);
  min-height: calc(100vh - var(--topbar-height) - 60px);
  display: grid;
  align-items: center;
}

.origin-block {
  display: grid;
  grid-template-columns: 280px minmax(0, 820px);
  gap: 44px;
  align-items: start;
  justify-content: center;
  padding: 24px 0;
}

.origin-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
  width: 100%;
}

.origin-visual {
  display: grid;
  place-items: center;
  align-self: center;
}

.origin-logo-stage {
  position: relative;
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.origin-logo {
  position: absolute;
  width: min(100%, 220px);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease, filter 360ms ease;
}

.origin-logo-vision {
  width: min(100%, 236px);
  opacity: 0;
  transform: scale(0.78);
  filter: blur(10px);
}

.origin-logo-vision svg {
  width: 100%;
  height: auto;
  stroke: var(--ink);
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.origin-logo-old {
  display: block;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0);
  object-fit: contain;
}

.origin-logo-new {
  opacity: 0;
  transform: scale(0.72) rotate(-8deg);
  filter: blur(10px);
}

.origin-logo-caption {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--subtle);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: opacity 280ms ease, transform 280ms ease;
}

.origin-logo-caption-new {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.origin-copy h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.origin-meta-stack,
.origin-text-stack {
  position: relative;
  width: 100%;
  transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.origin-meta-stack {
  min-height: 360px;
}

.origin-text-stack {
  min-height: 190px;
}

@media (min-width: 861px) {
  .origin-copy {
    gap: 14px;
  }

  .origin-copy h2 {
    max-width: 22ch;
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    line-height: 1;
  }

  .origin-meta-stack {
    min-height: 220px;
  }

  .origin-text-stack {
    min-height: 150px;
  }
}

.origin-meta-stage {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.origin-meta-stage.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.origin-lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.8vw, 1.38rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.36;
}

.origin-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--subtle);
  line-height: 1.72;
}

.origin-stage {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.origin-meta-stage .section-kicker {
  margin: 0;
}

.origin-meta-stage .event-accent-row {
  margin-top: 0;
}

.origin-stage.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.origin-shell[data-origin-state="0"] .origin-logo-old,
.origin-shell[data-origin-state="0"] .origin-logo-new,
.origin-shell[data-origin-state="0"] .origin-logo-caption {
  opacity: 0;
  transform: scale(0.72);
  filter: blur(10px);
}

.origin-shell[data-origin-state="0"] .origin-logo-vision {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.origin-shell[data-origin-state="1"] .origin-logo-vision,
.origin-shell[data-origin-state="2"] .origin-logo-vision,
.origin-shell[data-origin-state="3"] .origin-logo-vision {
  opacity: 0;
  transform: scale(0.72);
  filter: blur(10px);
}

.origin-shell[data-origin-state="1"] .origin-logo-old {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.origin-shell[data-origin-state="2"] .origin-logo-old {
  opacity: 0;
  transform: scale(0.82);
  filter: blur(8px);
}

.origin-shell[data-origin-state="2"] .origin-logo-new,
.origin-shell[data-origin-state="3"] .origin-logo-new {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0);
}

.origin-shell[data-origin-state="2"] .origin-logo-caption-old,
.origin-shell[data-origin-state="3"] .origin-logo-caption-old {
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
}

.origin-shell[data-origin-state="2"] .origin-logo-caption-new,
.origin-shell[data-origin-state="3"] .origin-logo-caption-new {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .apple-listing-block {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .apple-listing-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .apple-listing-orbit {
    width: min(38vw, 170px);
    flex: 0 0 auto;
  }

  .apple-listing-orbit-svg text {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .apple-listing-core {
    width: 108px;
    height: 108px;
    font-size: 4.3rem;
  }

  .apple-listing-meetup-card {
    width: min(100%, 224px);
    flex: 0 1 224px;
  }

  .origin-block {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .origin-sticky {
    top: calc(var(--topbar-height) + 24px);
    align-items: center;
    padding-top: 0;
  }

  .origin-visual {
    order: -1;
  }

  .origin-logo-stage {
    width: min(100%, 240px);
    margin: 0 auto;
    padding-bottom: 34px;
  }

  .origin-copy {
    gap: 14px;
    justify-items: center;
    width: min(100%, 640px);
  }

  .origin-meta-stack {
    min-height: 0;
  }

  .origin-text-stack {
    min-height: 0;
  }

  .home-recognition-bar-inner {
    width: auto;
    max-width: calc(100% - 24px);
    justify-content: center;
    padding: 5px 12px;
  }

  .home-recognition-bar-inner.wrap {
    width: auto;
    max-width: calc(100% - 24px);
  }

  .home-recognition-copy {
    text-align: center;
  }

  .home-recognition-copy strong {
    font-size: 0.84rem;
    line-height: 1.05;
  }

  .home-recognition-symbol {
    font-size: 1.12rem;
  }

  .apple-listing-content {
    width: 100%;
  }

  .apple-listing-actions .button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .origin-shell {
    min-height: 210vh;
  }

  .origin-sticky {
    top: calc(var(--topbar-height) + 18px);
    min-height: calc(100vh - var(--topbar-height) - 24px);
    align-items: center;
    padding-top: 0;
  }

  .origin-block {
    width: 100%;
    gap: 20px;
    padding: 18px 0 28px;
    justify-items: center;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .origin-logo-stage {
    width: 188px;
    height: 228px;
    aspect-ratio: auto;
    padding-bottom: 0;
  }

  .origin-copy {
    width: min(100%, 34rem);
    gap: 12px;
    justify-items: center;
    align-content: start;
  }

  .origin-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .origin-meta-stage {
    justify-items: center;
    text-align: center;
  }

  .origin-meta-stage .event-accent-row {
    justify-content: center;
  }

  .origin-logo-caption {
    bottom: 0;
  }

  .origin-meta-stack,
  .origin-text-stack {
    width: 100%;
  }

  .origin-copy p,
  .origin-lead {
    max-width: none;
  }

  .home-recognition-bar {
    padding-top: 6px;
  }

  .home-recognition-bar-inner {
    min-height: 28px;
    max-width: calc(100% - 20px);
    gap: 6px;
    padding: 4px 10px;
  }

  .home-recognition-bar-inner.wrap {
    width: auto;
    max-width: calc(100% - 20px);
  }

  .home-recognition-copy strong {
    font-size: 0.74rem;
    letter-spacing: -0.02em;
  }

  .home-recognition-symbol {
    font-size: 1rem;
  }

  .apple-listing-visual {
    display: grid;
    justify-items: center;
    gap: 0;
  }

  .apple-listing-orbit {
    width: 188px;
  }

  .apple-listing-orbit-svg text {
    font-size: 6.2px;
    letter-spacing: 0.02em;
  }

  .apple-listing-core {
    width: 146px;
    height: 146px;
    font-size: 5.5rem;
  }

  .apple-listing-meetup-card {
    display: none;
  }
}

.about-actions {
  margin-top: 24px;
}

.about-actions .signed-actions {
  justify-content: flex-start;
}

.home-activities-live-shell {
  margin-top: 22px;
}

.home-activities-live-shell-inline {
  margin-top: 22px;
}

.home-current-pt-shell {
  padding-top: 44px;
}

.home-about-phase-countdown {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(15, 23, 42, 0.18);
}

.home-about-phase-countdown h2,
.home-about-phase-countdown p {
  max-width: 52rem;
}

.home-signal-shell {
  padding-top: 8px;
}

.home-signal-stack {
  display: grid;
  gap: 20px;
}

.home-about-join-card,
.home-signal-today-card,
.home-path-card,
.home-recent-signal-card {
  padding: 28px 30px 30px;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.03);
}

.home-about-join-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.home-about-join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.is-authenticated .home-about-join-card {
  display: none;
}

.home-signal-head {
  display: grid;
  gap: 8px;
}

.home-signal-head h2 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-signal-head p {
  margin: 0;
  max-width: 50rem;
  color: var(--subtle);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-signal-today-title {
  max-width: 36rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.home-signal-today-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-signal-today-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-signal-today-pill[data-tone="ended"] {
  background: rgba(255, 59, 48, 0.12);
  color: #c9342d;
}

.home-signal-today-pill[data-tone="upcoming"] {
  background: rgba(255, 159, 10, 0.14);
  color: #b36a00;
}

.home-signal-today-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-signal-mini {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.home-signal-mini strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.home-signal-mini span {
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.58;
}

.home-signal-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.home-path-grid,
.home-recent-signal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  min-width: 0;
}

.home-path-link,
.home-recent-signal-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-width: 0;
  overflow: hidden;
}

.home-path-link {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
  min-height: 88px;
  padding: 18px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.home-path-link::after {
  content: "Open";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.1);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.home-path-link:hover,
.home-path-link:focus-visible,
.home-recent-signal-item:hover,
.home-recent-signal-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.home-path-link strong,
.home-recent-signal-item strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-path-link strong,
.home-path-link span {
  grid-column: 1;
}

.home-path-link span,
.home-recent-signal-item span {
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-recent-signal-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.home-recent-signal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-recent-signal-meta {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-current-pt-card {
  padding: 28px 30px 30px;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.03);
}

.home-current-pt-head {
  display: grid;
  gap: 8px;
}

.home-current-pt-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-current-pt-head p {
  margin: 0;
  max-width: 52rem;
  color: var(--subtle);
  line-height: 1.65;
}

.home-current-pt-head-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apple-listing-content .activities-live-head {
  gap: 10px;
}

.apple-listing-content .activities-live-phase-title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.apple-listing-content .activities-live-phase-note {
  max-width: 46rem;
}

.glance-shell {
  padding-top: 88px;
}

.glance-header,
.focus-grid,
.note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: end;
}

.glance-header h2,
.audience-block h2,
.action-block h2,
.focus-copy h2,
.prep-panel h2,
.host-note-card h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.glance-heading-block {
  display: grid;
  gap: 10px;
  align-content: start;
}

.glance-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.glance-subtitle {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.glance-header p,
.focus-copy p,
.host-note-card p,
.independent-note p {
  margin: 0;
  color: var(--subtle);
  line-height: 1.74;
}

.glance-summary {
  align-self: end;
  margin-bottom: 6px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.glance-item,
.signal-item,
.audience-item,
.action-item,
.focus-point,
.prep-panel,
.host-note-card,
.independent-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.05);
}

.glance-item {
  display: grid;
  gap: 12px;
  padding: 24px;
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.glance-day {
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.glance-item strong,
.signal-item strong,
.audience-item strong,
.action-item strong,
.focus-point strong,
.prep-panel strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.glance-item p,
.signal-item span,
.audience-item p,
.action-item p,
.focus-point p,
.prep-list li,
.journey-step p {
  margin: 0;
  color: var(--subtle);
  line-height: 1.68;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.signal-item {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.audience-shell,
.prep-shell,
.note-shell {
  padding-top: 92px;
}

.audience-grid,
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
  position: relative;
}

.audience-grid::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: var(--line-strong);
  pointer-events: none;
}

.audience-block,
.action-block {
  display: grid;
  gap: 20px;
}

.audience-intro {
  max-width: 54ch;
  margin: 2px 0 2px;
  color: var(--subtle);
  line-height: 1.7;
}

.audience-block {
  padding-right: 10px;
}

.action-block {
  padding-left: 10px;
}

.audience-list,
.action-list,
.focus-points,
.journey-list {
  display: grid;
  gap: 14px;
}

.audience-item {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.action-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.action-item span,
.journey-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--orange-soft) 72%, var(--surface) 28%);
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
}

.focus-shell {
  padding-top: 104px;
}

.focus-copy {
  display: grid;
  gap: 16px;
}

.focus-points {
  align-content: start;
}

.focus-point {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.prep-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.prep-grid-single,
.note-grid-single {
  grid-template-columns: 1fr;
}

.prep-panel-plain,
.host-note-card-plain {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.prep-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.journey-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(16, 20, 26, 0.05);
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.glance-item.is-reading,
.signal-item.is-reading,
.action-item.is-reading,
.journey-step.is-reading,
.faq-support-card.is-reading {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--blue) 20%, var(--line));
  box-shadow: 0 22px 44px rgba(16, 20, 26, 0.08);
  background: color-mix(in srgb, var(--surface) 95%, var(--blue-soft) 5%);
}

.note-grid {
  align-items: stretch;
}

.host-note-card,
.independent-note {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.host-note-card .home-host-row {
  margin-top: 6px;
}

.host-note-card-plain .home-host-row {
  margin-top: 18px;
}

.host-note-card-paper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.06);
  transform: none;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  cursor: default;
}

.host-note-card-paper::before {
  display: none;
}

.host-note-card-paper::after {
  display: none;
}

.host-note-card-paper:hover,
.host-note-card-paper:focus-within {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: 0 22px 44px rgba(16, 20, 26, 0.08);
}

.host-note-card-paper > * {
  position: relative;
  z-index: 1;
}

.host-note-card-paper .section-kicker,
.host-note-card-paper p {
  color: var(--subtle);
}

.host-note-crease {
  display: none;
}

.host-note-card-paper.is-creased .host-note-crease {
  animation: none;
}

@keyframes noteCrease {
  0% {
    opacity: 0;
    transform: scale(0.78) rotate(-3deg);
  }

  22% {
    opacity: 0.92;
    transform: scale(1.04) rotate(0deg);
  }

  58% {
    opacity: 0.62;
    transform: scale(0.98) rotate(0.4deg);
  }

  100% {
    opacity: 0;
    transform: scale(1.08) rotate(0deg);
  }
}

.host-note-signoff {
  margin: 2px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.independent-note {
  align-content: center;
}

.intro-sequence {
  position: relative;
  min-height: 280vh;
  padding: 24px 0 140px;
}

.intro-sticky {
  position: sticky;
  top: var(--topbar-height);
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  align-items: center;
}

.intro-shell {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.intro-symbol {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.intro-symbol svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-narrative {
  position: relative;
  min-height: 400px;
  padding-top: 0;
  max-width: 58rem;
  width: 100%;
}

.intro-narrative .story-kicker {
  display: block;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.intro-stage {
  position: absolute;
  inset: 72px 0 auto;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.intro-stage.is-active {
  opacity: 1;
  transform: translateY(0);
}

.intro-stage p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.activity-shell {
  padding: 110px 0 0;
}

.activity-heading {
  max-width: 840px;
}

.activity-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
}

.activity-heading p {
  margin: 16px 0 0;
  color: var(--subtle);
  line-height: 1.72;
}

.activity-heading-actions {
  margin-top: 22px;
}

.activities-overview-note strong {
  color: var(--ink);
}

.activity-registration-note {
  margin-top: 20px;
  color: var(--subtle);
  line-height: 1.68;
}

.activities-page-footer {
  display: flex;
  justify-content: center;
  padding-bottom: 96px;
}

.activity-wrap {
  overflow: hidden;
}

.activity-timeline {
  position: relative;
  display: grid;
  gap: 32px;
  max-width: 940px;
  margin-top: 58px;
  margin-bottom: 108px;
  padding-left: 44px;
}

.timeline-line {
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 14px;
  width: 2px;
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}

.timeline-time {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.activity-legacy-name {
  display: block;
  margin-top: 9px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.28;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--subtle);
  font-size: 1.02rem;
  line-height: 1.68;
}

.activity-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 420px);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 34px 0 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}

.activity-scroller::-webkit-scrollbar {
  display: none;
}

.activity-card {
  position: relative;
  min-height: 520px;
  max-height: 520px;
  scroll-snap-align: start;
  perspective: 1400px;
  opacity: 0.74;
  transform: scale(0.972);
  transition: opacity 260ms ease, transform 260ms ease;
}

.activity-card.is-focus {
  opacity: 1;
  transform: scale(1);
}

.activity-inner {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 520px;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.activity-card.is-flipped .activity-inner {
  transform: rotateY(180deg);
}

.activity-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  grid-auto-rows: min-content;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 20, 26, 0.08);
  background: var(--surface);
  backface-visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 20, 26, 0.24) transparent;
}

.activity-face.back {
  transform: rotateY(180deg);
}

.activity-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.activity-card-links .button {
  flex: 1 1 170px;
}

.activity-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.activity-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.activity-symbol svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(16, 20, 26, 0.14);
  transition: transform 180ms ease, border-color 180ms ease;
}

.activity-toggle:hover,
.activity-toggle:focus-visible {
  transform: rotate(90deg);
  border-color: rgba(16, 20, 26, 0.32);
}

.activity-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.activity-face h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.activity-title-prefix {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.28;
  text-transform: uppercase;
}

.activity-face p,
.activity-face li {
  color: var(--subtle);
  line-height: 1.68;
}

.activity-summary {
  margin: 0;
}

.activity-meta {
  display: grid;
  gap: 14px;
}

.activity-meta div,
.activity-body-block {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.activity-meta strong,
.activity-body-block strong,
.detail-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.activity-face ul {
  margin: 0;
  padding-left: 18px;
}

.activities-main {
  padding-top: calc(var(--topbar-height) + 38px);
  padding-bottom: 92px;
}

.activities-shell {
  width: min(100%, 1160px);
  display: grid;
  gap: 28px;
}

.activities-status {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
}

.activities-live-shell {
  display: grid;
  gap: 16px;
}

.activities-live-head {
  display: grid;
  gap: 8px;
}

.activities-live-phase-note {
  margin: 0;
  max-width: 52rem;
  color: var(--subtle);
  font-size: 0.97rem;
  line-height: 1.58;
}

.activities-live-head p {
  margin: 0;
  color: var(--subtle);
  line-height: 1.55;
}

.activities-live-phase-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.activities-live-phase-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activities-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.activities-live-shell[data-phase="ended"] {
  gap: 20px;
}

.activities-live-shell[data-phase="ended"] .activities-live-phase-title {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.activities-live-shell[data-phase="ended"] .activities-live-phase-note {
  font-size: 1rem;
  max-width: 44rem;
}

.activities-live-shell[data-phase="ended"] .activities-live-phase-meta {
  background: rgba(255, 59, 48, 0.12);
  color: #c9342d;
}

.activities-live-shell[data-phase="ended"] .activities-live-grid {
  grid-template-columns: minmax(280px, 420px);
}

.activities-live-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.activities-live-card[data-tone="active"] {
  background: #fff;
}

.activities-live-card[data-tone="upcoming"] {
  background: #fff;
}

.activities-live-card[data-tone="ended"] {
  background: #fff;
}

.activities-live-card:hover,
.activities-live-card:focus-visible {
  transform: translateY(-2px);
}

.activities-live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.activities-live-card-label {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.activities-live-card-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.activities-live-card-copy {
  margin: 0;
  color: var(--subtle);
  font-size: 0.9rem;
  line-height: 1.58;
}

.platform-photo-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--subtle);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.45;
}

.platform-photo-preview-signal {
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.button.button-compact {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.activities-status-mark,
.activities-page-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
}

.activities-status-mark svg,
.activities-page-symbol svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activities-status h2,
.activities-page-card h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.activities-status p,
.activities-page-card p,
.activities-page-card li {
  color: var(--subtle);
  line-height: 1.7;
}

.activities-header-actions,
.activities-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.activities-page-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.activities-page-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.activities-page-card ul {
  margin: 0;
  padding-left: 18px;
}

.activities-page-status {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.support-intro {
  padding-bottom: 18px;
}

.support-grid {
  align-items: stretch;
}

.support-email-list {
  display: grid;
  gap: 10px;
}

.support-email-list a {
  color: var(--primary);
  font-weight: 500;
  word-break: break-word;
}

.support-status a,
.activities-overview-note a {
  color: var(--primary);
}

.support-page-main {
  padding-top: 64px;
}

.support-hero {
  padding: 54px 0 28px;
}

.support-hero-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.support-hero-mark {
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3c82f6;
}

.support-hero-mark img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.activities-hero-mark {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.activities-hero-mark img {
  width: 126px;
  height: 126px;
}

.support-eyebrow {
  color: var(--subtle);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.support-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.support-title-prefix {
  color: var(--subtle);
  font-weight: 400;
}

.support-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--subtle);
  font-size: 1.04rem;
  line-height: 1.75;
}

.support-linkbar {
  padding: 18px 0 38px;
}

.support-linkbar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
}

.support-linkbar-row a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 116px;
  color: var(--subtle);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}

.support-linkbar-row a:hover,
.support-linkbar-row a:focus-visible {
  color: var(--ink);
}

.support-linkbar-symbol {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.support-linkbar-symbol svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-linkbar-symbol-blue {
  color: #2f7df6;
}

.support-linkbar-symbol-green {
  color: #34a853;
}

.support-linkbar-symbol-orange {
  color: #f28c18;
}

.support-linkbar-symbol-purple {
  color: #7b61ff;
}

.support-contact-symbol svg,
.support-search-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-search {
  padding: 12px 0 34px;
}

.support-search-inner {
  display: grid;
  gap: 18px;
}

.support-search-inner h2 {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.support-template-note {
  margin: -2px 0 2px;
  text-align: center;
  color: var(--subtle);
  line-height: 1.68;
}

.support-search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.support-search-icon {
  color: var(--muted);
}

.support-search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.support-directory {
  padding: 4px 0 44px;
}

.support-directory-list {
  display: grid;
  gap: 18px;
}

.support-contact-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.4fr);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.support-contact-media {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  min-height: 240px;
  padding: 28px;
  text-align: center;
}

.support-contact-media strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.support-contact-media .activity-legacy-name,
.activity-directory-backside .activity-legacy-name {
  color: currentColor;
  opacity: 0.82;
}

.support-contact-media-blue {
  background: linear-gradient(180deg, rgba(231, 242, 255, 0.9), rgba(219, 236, 255, 0.94));
  color: #1f63d9;
}

.support-contact-media-green {
  background: linear-gradient(180deg, rgba(233, 248, 236, 0.92), rgba(220, 242, 225, 0.96));
  color: #2d8a43;
}

.support-contact-media-orange {
  background: linear-gradient(180deg, rgba(255, 241, 226, 0.94), rgba(255, 234, 210, 0.96));
  color: #d67b14;
}

.support-contact-media-purple {
  background: linear-gradient(180deg, rgba(241, 235, 255, 0.92), rgba(232, 224, 255, 0.96));
  color: #7a59d9;
}

.support-contact-media-neutral {
  background: linear-gradient(180deg, rgba(241, 243, 247, 0.96), rgba(232, 236, 241, 0.98));
  color: #4c5564;
}

.support-contact-media-host {
  background: linear-gradient(180deg, rgba(255, 236, 238, 0.94), rgba(255, 225, 229, 0.98));
  color: #d45069;
}

.support-contact-symbol {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.support-contact-symbol-apple {
  font-size: 2.9rem;
  line-height: 1;
  color: inherit;
}

.support-contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.support-contact-copy {
  display: grid;
  gap: 10px;
}

.support-contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.support-contact-copy h2 .activity-title-prefix {
  color: var(--blue);
}

.support-contact-copy p {
  margin: 0;
  color: var(--subtle);
  line-height: 1.75;
  max-width: 56ch;
}

.support-contact-meta {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.support-contact-email {
  color: var(--primary);
  font-weight: 600;
  word-break: break-word;
}

.support-contact-route {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.support-search-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--subtle);
  text-align: center;
}

.support-apple-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.support-request-main {
  padding-bottom: 56px;
}

.support-request-page {
  min-height: 100vh;
}

.support-request-hero {
  padding-top: 84px;
  padding-bottom: 30px;
}

.support-request-hero .support-hero-inner {
  gap: 18px;
}

.support-request-section {
  padding: 0 0 48px;
}

.support-request-card {
  display: grid;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-request-card + .support-request-card {
  margin-top: 28px;
}

.support-request-form {
  display: grid;
  gap: 18px;
}

.support-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-request-field {
  display: grid;
  gap: 10px;
}

.support-request-field textarea {
  min-height: 220px;
  resize: vertical;
}

.support-request-note {
  margin: -4px 0 2px;
}

.support-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-request-success {
  padding-top: 12px;
}

.support-request-success-screen {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 72px 24px 88px;
}

.support-request-success-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  max-width: 560px;
}

.support-request-success-inner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.support-request-success-inner p {
  margin: 0;
  color: var(--subtle);
  font-size: 1.05rem;
  line-height: 1.8;
}

.support-request-success-check {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #2f7df6;
  background: transparent;
  color: #2f7df6;
}

.support-request-success-check svg {
  width: 62px;
  height: 62px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-request-success-actions {
  justify-content: center;
  margin-top: 4px;
}

.authority-support-list {
  display: grid;
  gap: 16px;
}

.authority-support-item {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.authority-support-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.authority-support-head strong {
  font-size: 1.08rem;
}

.authority-support-meta {
  display: grid;
  gap: 8px;
  color: var(--subtle);
}

.authority-support-description {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.72;
}

.authority-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.activities-formal-main {
  padding-bottom: 72px;
}

.activities-timeline-band {
  padding: 48px 0 86px;
}

.activities-timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.activities-timeline-row {
  --activities-timeline-step-width: 240px;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--activities-timeline-step-width);
  width: max-content;
  min-width: 100%;
  gap: 14px;
  align-items: start;
}

.activities-timeline-row::before {
  content: "";
  position: absolute;
  left: calc(var(--activities-timeline-step-width) / 2);
  right: calc(var(--activities-timeline-step-width) / 2);
  top: 18px;
  height: 3px;
  background: rgba(10, 132, 255, 0.2);
  border-radius: 999px;
  box-shadow: none;
}

.activities-timeline-row::after {
  content: "";
  position: absolute;
  left: calc(var(--activities-timeline-step-width) / 2);
  top: 18px;
  width: var(--timeline-progress-width, 0px);
  height: 3px;
  background: #0a84ff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
}

.activities-timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 34px 8px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  color: inherit;
  text-decoration: none;
}

.activities-timeline-step:hover,
.activities-timeline-step:focus-within {
  transform: translateY(-3px);
}

.activities-timeline-step[data-activity-state="active"]::before {
  background: #0a84ff;
  box-shadow: 0 0 0 6px rgba(10, 132, 255, 0.14);
}

.activities-timeline-step[data-activity-state="upcoming"]::before {
  background: #ff9f0a;
  box-shadow: 0 0 0 6px rgba(255, 159, 10, 0.12);
}

.activities-timeline-step[data-activity-state="ended"]::before {
  background: #8e8e93;
  box-shadow: 0 0 0 6px rgba(142, 142, 147, 0.12);
}

.activity-directory-card {
  scroll-margin-top: 118px;
}

.activities-timeline-symbol {
  display: none;
}

.activities-timeline-time {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activities-timeline-step strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.activities-timeline-step p {
  margin: 0;
  color: var(--subtle);
  line-height: 1.58;
  max-width: 19ch;
  font-size: 0.88rem;
}

.activities-timeline-state-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: #0057d8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.activities-timeline-pop {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 6;
  display: grid;
  gap: 10px;
  width: min(280px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 34px rgba(17, 20, 26, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: left;
}

.activities-timeline-step:hover .activities-timeline-pop,
.activities-timeline-step:focus-visible .activities-timeline-pop,
.activities-timeline-step:focus-within .activities-timeline-pop {
  opacity: 1;
  transform: translate(-50%, 0);
}

.activities-timeline-pop-status {
  display: inline-flex;
  width: fit-content;
}

.activities-timeline-pop strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.activities-timeline-pop p {
  margin: 0;
  max-width: none;
  color: var(--subtle);
  font-size: 0.88rem;
  line-height: 1.58;
}

.activities-timeline-step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0a84ff;
}

.activities-timeline-row.is-visible::before {
  animation: none;
}

.activities-timeline-row.is-visible::after {
  animation: activitiesTimelineFill 900ms cubic-bezier(0.22, 0.78, 0.18, 1) forwards;
}

.activities-timeline-row.is-visible .activities-timeline-step {
  animation: activitiesTimelineStepReveal 620ms cubic-bezier(0.2, 0.72, 0.16, 1) forwards;
  animation-delay: calc(0.62s + (var(--timeline-step-index, 0) * 0.18s));
}

.activity-directory-card[data-activity-state="active"] .activity-directory-status {
  border-top-color: rgba(10, 132, 255, 0.22);
}

.activity-directory-card[data-activity-state="upcoming"] .activity-directory-status {
  border-top-color: rgba(255, 159, 10, 0.22);
}

.activity-directory-card[data-activity-state="ended"] .activity-directory-status {
  border-top-color: rgba(120, 124, 138, 0.18);
}

@keyframes activitiesTimelineFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes activitiesTimelineStepReveal {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.activities-hero-accent {
  justify-content: center;
  margin-top: 8px;
}

.activities-search .support-search-inner {
  gap: 18px;
  justify-items: center;
}

.activities-search .support-search-box {
  width: min(100%, 1120px);
  padding: 16px 18px;
}

.activities-search .support-search-box input {
  min-height: 32px;
}

.activities-overview-copy {
  margin: 0;
  max-width: 60rem;
  color: var(--subtle);
  line-height: 1.74;
  text-align: center;
}

.activities-overview-future {
  font-size: 0.96rem;
  color: var(--muted);
}

.activity-directory-card {
  perspective: 2200px;
}

.activity-directory-scene {
  position: relative;
  display: grid;
  height: 666px;
  overflow: hidden;
  transform-style: preserve-3d;
  isolation: isolate;
}

.activity-directory-sheet {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.4fr);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  height: 666px;
  will-change: transform;
  transform-origin: center center;
  transition:
    transform 720ms cubic-bezier(0.16, 0.9, 0.24, 1),
    opacity 240ms ease;
  pointer-events: none;
}

.activity-directory-sheet.front {
  z-index: 2;
  opacity: 1;
  transform: rotateY(0deg) translateZ(14px) scale(1);
  pointer-events: auto;
}

.activity-directory-sheet.back {
  z-index: 1;
  opacity: 0;
  transform: rotateY(-180deg) translateZ(14px) scale(0.98);
}

.activity-directory-card.is-flipped .activity-directory-sheet.front {
  opacity: 0;
  transform: rotateY(180deg) translateZ(14px) scale(0.98);
  pointer-events: none;
}

.activity-directory-card.is-flipped .activity-directory-sheet.back {
  opacity: 1;
  transform: rotateY(0deg) translateZ(14px) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.activity-directory-sheet > * {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.activity-directory-sheet .support-contact-media {
  gap: 20px;
}

.activity-directory-sheet .support-contact-symbol {
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 12px 30px rgba(15, 23, 42, 0.08);
}

.activity-directory-sheet .support-contact-symbol svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.85;
}

.activity-directory-backside {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
  height: 666px;
  padding: 28px;
  text-align: left;
}

.activity-directory-backside strong {
  display: block;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.activity-directory-back-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.activity-directory-back-symbol svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-directory-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  min-width: 0;
}

.activity-directory-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.activity-directory-copy > p {
  max-width: none;
}

.activity-directory-sheet.front .activity-directory-content {
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}

.activity-directory-sheet.front .activity-directory-copy {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  padding-right: 10px;
  padding-bottom: 18px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.activity-directory-sheet.back .activity-directory-content {
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}

.activity-directory-sheet.back .activity-directory-copy {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  padding-right: 10px;
  padding-bottom: 18px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.activity-directory-toggle {
  min-width: 132px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(16, 20, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activity-directory-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  line-height: 1;
}

.activity-directory-toggle-label {
  line-height: 1;
}

.activity-directory-toggle:hover,
.activity-directory-toggle:focus-visible {
  transform: scale(1.04);
  border-color: rgba(10, 132, 255, 0.18);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.activity-directory-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-top: auto;
  min-width: 0;
}

.activity-directory-meta .button {
  white-space: nowrap;
  flex: 0 0 auto;
}

.activity-directory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activity-directory-links .button {
  flex: 0 0 auto;
}

.activity-directory-block,
.activity-directory-status {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.activity-directory-block strong,
.activity-directory-status strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.activity-directory-block p,
.activity-directory-status p,
.activity-directory-block li {
  margin: 0;
  color: var(--subtle);
  line-height: 1.7;
}

.activity-directory-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.activity-directory-status {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.activity-directory-status-live {
  gap: 10px;
}

.activity-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1.5px solid rgba(52, 199, 89, 0.78);
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.08);
  color: #14833b;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.activity-status-pill[data-tone="upcoming"],
.activities-timeline-state-pill[data-tone="upcoming"] {
  border-color: rgba(255, 159, 10, 0.6);
  background: rgba(255, 159, 10, 0.1);
  color: #b26a00;
}

.activity-status-pill[data-tone="active"],
.activities-timeline-state-pill[data-tone="active"] {
  border-color: rgba(10, 132, 255, 0.56);
  background: rgba(10, 132, 255, 0.1);
  color: #0057d8;
}

.activity-status-pill[data-tone="ended"],
.activities-timeline-state-pill[data-tone="ended"] {
  border-color: rgba(120, 124, 138, 0.34);
  background: rgba(120, 124, 138, 0.1);
  color: #616570;
}

.activity-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.activity-tag-row-compact {
  margin-top: 14px;
}

.activity-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.activity-attendance-note {
  margin: 0;
  color: #b8860b;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.activities-timeline-shell {
  padding-top: 72px;
}

.activities-footer-shell {
  padding-top: 24px;
}

.activities-page-status strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.activities-page-status span {
  color: var(--subtle);
  line-height: 1.6;
}

.activity-face::-webkit-scrollbar {
  width: 8px;
}

.activity-face::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(16, 20, 26, 0.18);
}

.activity-body-block p,
.activity-face li,
.activity-summary,
.activity-meta p {
  overflow-wrap: anywhere;
}

.platform-shell {
  padding: 92px 0 0;
}

.platform-header {
  max-width: 860px;
}

.platform-header h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.platform-header p {
  margin: 16px 0 0;
  color: var(--subtle);
  line-height: 1.72;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.platform-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.platform-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.platform-symbol svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.platform-item p {
  margin: 8px 0 0;
  color: var(--subtle);
  line-height: 1.64;
}

.platform-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.platform-image {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.06);
}

.platform-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
}

.platform-image.appear {
  opacity: 0;
}

.platform-image-left.appear {
  transform: translateX(-34px);
}

.platform-image-right.appear {
  transform: translateX(34px);
}

.platform-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.platform-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 48px;
  padding-top: 10px;
}

.platform-bridge-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 10px;
}

.platform-bridge-top {
  display: grid;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.platform-bridge-kicker {
  display: inline-block;
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-bridge-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--ink);
}

.platform-bridge-copy p {
  margin: 0;
  max-width: 35rem;
  color: var(--subtle);
  line-height: 1.8;
  font-size: 1.02rem;
}

.platform-bridge-copy .platform-bridge-lead {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.74;
}

.platform-bridge-right {
  text-align: left;
}

.platform-bridge-center {
  display: flex;
  justify-content: center;
  min-height: 100%;
}

.platform-bridge-line {
  display: block;
  width: 1px;
  min-height: 100%;
  background: var(--line-strong);
}

.detail-shell {
  padding: 148px 0 92px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  background: transparent;
  box-shadow: none;
}

.detail-intro,
.detail-list {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.detail-intro {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.06);
}

.detail-intro h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.join-cue {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.join-cue-hand {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3.3rem;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -92%);
  will-change: transform, opacity;
}

.join-cue-hand.is-active {
  animation: joinTap 1.7s ease-in-out;
}

@keyframes joinTap {
  0% {
    transform: translate(
        calc(-50% + var(--join-offset-x, 0px)),
        calc(-92% + var(--join-offset-y, 0px) + 12px)
      )
      rotate(-8deg)
      scale(0.9);
    opacity: 0;
  }

  18% {
    transform: translate(calc(-50% + var(--join-offset-x, 0px)), calc(-92% + var(--join-offset-y, 0px)))
      rotate(0deg)
      scale(1);
    opacity: 1;
  }

  38% {
    transform: translate(
        calc(-50% + var(--join-offset-x, 0px) - 6px),
        calc(-92% + var(--join-offset-y, 0px) + 2px)
      )
      rotate(-9deg)
      scale(1.02);
    opacity: 1;
  }

  56% {
    transform: translate(
        calc(-50% + var(--join-offset-x, 0px) + 7px),
        calc(-92% + var(--join-offset-y, 0px) - 2px)
      )
      rotate(8deg)
      scale(1.02);
    opacity: 1;
  }

  74% {
    transform: translate(
        calc(-50% + var(--join-offset-x, 0px) - 4px),
        calc(-92% + var(--join-offset-y, 0px) + 1px)
      )
      rotate(-5deg)
      scale(0.98);
    opacity: 0.92;
  }

  100% {
    transform: translate(
        calc(-50% + var(--join-offset-x, 0px)),
        calc(-92% + var(--join-offset-y, 0px) + 10px)
      )
      rotate(3deg)
      scale(0.92);
    opacity: 0;
  }
}

.detail-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  order: -1;
}

.detail-faq {
  display: grid;
  gap: 0;
  margin: 26px 0 22px;
}

.faq-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 18px;
}

.faq-heading .heading-symbol {
  width: 62px;
  height: 62px;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.faq-heading .heading-symbol svg {
  width: 40px;
  height: 40px;
}

.faq-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  background: transparent;
  color: var(--ink);
}

.faq-symbol {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.faq-symbol svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-text {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.faq-plus {
  justify-self: end;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 22px 44px;
  color: var(--subtle);
  line-height: 1.74;
}

.faq-support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  color: inherit;
  text-align: center;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.faq-support-symbol {
  width: 64px;
  height: 64px;
}

.faq-support-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.faq-support-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.faq-support-copy span {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-support-button {
  margin-top: 4px;
}

.detail-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.detail-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-main {
  padding-top: calc(var(--topbar-height) + 44px);
}

.policy-copy {
  padding: 0 0 84px;
}

.policy-wrap {
  max-width: 760px;
}

.policy-wrap h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.policy-wrap h2 {
  margin: 42px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.policy-wrap p {
  margin: 18px 0 0;
  color: var(--subtle);
  line-height: 1.78;
}

.policy-signoff {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 24px;
}

:root[data-theme="dark"] .site-footer {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
}

.footer-ad-shell {
  margin-bottom: 0;
}

.footer-ad {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(16, 20, 26, 0.06);
}

.footer-ad-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--subtle);
  background: transparent;
}

.footer-ad-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(227, 81, 132, 0.1);
}

.footer-ad-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-ad-copy {
  min-width: 0;
}

.footer-ad-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-ad-copy strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-ad-copy p {
  margin: 6px 0 0;
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-ad-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-band {
  width: 100%;
  padding: 18px 0 30px;
  background: rgba(16, 20, 26, 0.045);
  border-radius: 0 0 22px 22px;
}

:root[data-theme="dark"] .footer-ad {
  background: #161616;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

:root[data-theme="dark"] .footer-ad-mark {
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .footer-band {
  background: #101010;
}

:root[data-theme="dark"] .footer-rule {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .footer-sitemap strong,
:root[data-theme="dark"] .footer-legal,
:root[data-theme="dark"] .footer-note strong,
:root[data-theme="dark"] .footer-breadcrumb {
  color: #f5f5f7;
}

:root[data-theme="dark"] .theme-button.is-active {
  background: #1a1a1a;
}

.footer-note,
.footer-path,
.footer-legal {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-note p,
.footer-legal p {
  margin: 0;
}

.footer-font-status {
  margin-top: 6px !important;
  color: inherit;
}

[data-server-date-note] {
  display: block;
  margin-top: 6px;
}

.footer-note p + p {
  margin-top: 6px;
}

.footer-rule {
  height: 1px;
  margin-top: 16px;
  background: var(--line);
}

.footer-path {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  align-items: center;
  padding: 14px 0 0;
}

.footer-path-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--subtle);
}

.footer-breadcrumb-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.footer-arrow {
  color: var(--muted);
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 220px));
  gap: 28px;
  padding: 18px 0;
  color: var(--subtle);
}

.footer-sitemap strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.footer-sitemap a {
  display: block;
  margin-top: 8px;
}


.theme-picker {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 1px 0 1px 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.theme-picker-inline {
  width: fit-content;
  flex: 0 0 auto;
  gap: 0;
  padding: 0;
}

.theme-button {
  min-width: 0;
  min-height: 28px;
  padding: 0 7px;
  border-radius: var(--radius-pill);
  color: var(--subtle);
  font-size: 0.8rem;
  background: transparent;
}

.theme-button.is-active {
  color: var(--ink);
  background: var(--surface);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  color: var(--ink);
}

.footer-legal a {
  color: var(--primary);
}

.home-joined-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.05);
}

.home-joined-label {
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-joined-symbol {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
}

.home-joined-symbol svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-joined-copy,
.home-host-copy {
  display: grid;
  gap: 5px;
}

.home-joined-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.home-week-wish {
  padding: 48px 0 14px;
}

.home-week-wish p {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(2.15rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.065em;
  text-wrap: balance;
  max-width: 19ch;
  margin-inline: auto;
}

.home-closing-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 30px;
  max-width: 420px;
  margin-inline: auto;
}

.home-host-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 92%, var(--blue-soft) 8%) 100%);
  box-shadow: 0 18px 40px rgba(16, 20, 26, 0.05);
}

.home-host-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-host-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.home-host-card a {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue-soft) 76%, var(--surface) 24%);
}

.home-host-card a:hover,
.home-host-card a:focus-visible {
  text-decoration: none;
  background: color-mix(in srgb, var(--blue-soft) 88%, var(--surface) 12%);
}

.appear {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 1120ms cubic-bezier(0.2, 0.72, 0.16, 1) var(--appear-delay, 0ms),
    transform 1120ms cubic-bezier(0.2, 0.72, 0.16, 1) var(--appear-delay, 0ms),
    filter 980ms cubic-bezier(0.2, 0.72, 0.16, 1) var(--appear-delay, 0ms);
}

.appear.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.no-scroll-appear .appear,
.no-scroll-appear [data-appear] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.no-scroll-appear .activities-timeline-row::before {
  transform: scaleX(1);
}

.no-scroll-appear .activities-timeline-step {
  opacity: 1;
  transform: none;
  animation: none !important;
}

.status-body {
  background: var(--paper);
}

.status-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.status-layout {
  max-width: 720px;
  text-align: center;
}

.status-copy h1 {
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.status-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.auth-body {
  min-height: 100vh;
  background: #f5f5f7;
  color: #1d1d1f;
}

body.auth-body.welcome-page {
  background: #f5f5f7;
  color: #1d1d1f;
}

.auth-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--topbar-height) + 54px) 20px 72px;
}

.welcome-page .auth-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f5f5f7;
}

.auth-shell {
  width: min(100%, 640px);
  display: grid;
  gap: 28px;
  justify-items: center;
}

.auth-brand-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.auth-brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.auth-brand-mark {
  width: min(136px, 26vw);
  height: auto;
}

.auth-brand-avatar {
  width: min(80px, 18vw);
  height: min(80px, 18vw);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(29, 29, 31, 0.12);
}

.auth-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.auth-header {
  width: min(100%, 560px);
  text-align: center;
}

.auth-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #6e6e73;
  font-size: 0.9rem;
  font-weight: 500;
}

.auth-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.auth-header p {
  margin: 16px auto 0;
  max-width: 36rem;
  color: #6e6e73;
  font-size: 1.04rem;
  line-height: 1.6;
}

.auth-card {
  width: min(100%, 540px);
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  color: #1d1d1f;
  font-size: 0.95rem;
  font-weight: 600;
}

.auth-field input,
.auth-field select,
.auth-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 16px;
  color: #1d1d1f;
  background: #ffffff;
  cursor: text;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-field textarea {
  min-height: 152px;
  padding: 16px 18px;
  resize: vertical;
}

.auth-field select {
  cursor: pointer;
}

.auth-field input[type="file"] {
  padding: 14px 18px;
}

.auth-field input::placeholder,
.auth-field textarea::placeholder {
  color: #8a8a8f;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
  outline: none;
  border-color: rgba(10, 132, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

.auth-password-row {
  position: relative;
}

.auth-password-row input {
  padding-right: 82px;
}

.auth-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  min-height: 32px;
  padding: 0 8px;
  color: #0a84ff;
  font-size: 0.94rem;
  font-weight: 600;
  background: transparent;
  transform: translateY(-50%);
}

.auth-toggle:hover,
.auth-toggle:focus-visible {
  transform: translateY(-50%);
}

.auth-meta {
  display: flex;
  justify-content: flex-end;
}

.auth-link {
  color: #0a84ff;
  font-size: 0.95rem;
  font-weight: 500;
}

.auth-note {
  margin: 0;
  color: #6e6e73;
  font-size: 0.92rem;
  line-height: 1.55;
}

.auth-warning {
  padding: 14px 16px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  border-radius: 16px;
  color: #375174;
  font-size: 0.94rem;
  line-height: 1.55;
  background: rgba(10, 132, 255, 0.08);
}

.auth-consent-group {
  display: grid;
  gap: 12px;
}

.auth-check {
  display: grid;
  grid-template-columns: 18px 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
  color: #4f5560;
  font-size: 0.94rem;
  line-height: 1.55;
}

.auth-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  opacity: 0;
  pointer-events: none;
}

.auth-check a {
  color: #0a84ff;
}

.auth-check-box {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(16, 20, 26, 0.24);
  border-radius: 6px;
  background: #ffffff;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.auth-check-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0;
  transform: rotate(45deg) scale(0.9);
  transition: opacity 160ms ease, transform 160ms ease;
}

.auth-check input:checked + .auth-check-box {
  border-color: #0a84ff;
  background: #0a84ff;
}

.auth-check input:checked + .auth-check-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.auth-check input:focus-visible + .auth-check-box {
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.14);
}


.auth-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.auth-feedback.is-error {
  color: #8f1d1d;
  background: rgba(213, 53, 53, 0.1);
}

.auth-feedback.is-success {
  color: #14532d;
  background: rgba(52, 199, 89, 0.14);
}

.auth-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
}

.auth-secondary {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.auth-secondary p {
  margin: 0;
  color: #6e6e73;
}

.welcome-shell {
  max-width: 720px;
  position: relative;
  overflow: hidden;
}

.welcome-shell > *:not(.welcome-fireworks) {
  position: relative;
  z-index: 1;
}

.welcome-card {
  display: grid;
  gap: 16px;
  text-align: center;
  align-items: start;
}

.welcome-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.welcome-card p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.7;
}

body.auth-body.welcome-page .auth-kicker,
body.auth-body.welcome-page .auth-header p,
body.auth-body.welcome-page .welcome-card p,
body.auth-body.welcome-page .profile-inline-note {
  color: #6e6e73;
}

body.auth-body.welcome-page .auth-brand-name,
body.auth-body.welcome-page .auth-header h1,
body.auth-body.welcome-page .welcome-card h2 {
  color: #1d1d1f;
}

body.auth-body.welcome-page .welcome-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.welcome-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.welcome-page .welcome-actions .button {
  width: 100%;
  min-width: 0;
}

.welcome-actions-primary {
  grid-template-columns: 1fr;
  padding-top: 0;
  padding-bottom: 4px;
}

.welcome-console-button {
  width: 100%;
  justify-content: center;
}

.welcome-actions-profile {
  padding-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.welcome-actions-profile .button {
  width: 100%;
}

.welcome-actions-secondary {
  padding-top: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-inline-note {
  margin: 4px auto 0;
  max-width: 42rem;
  color: #6e6e73;
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .welcome-actions,
  .welcome-actions-secondary {
    grid-template-columns: 1fr;
  }

  .home-dashboard {
    padding-top: calc(var(--topbar-height) + 28px);
  }

  .home-dashboard-date-card {
    width: 116px;
  }

  .home-dashboard-date-card-day {
    font-size: 2.8rem;
  }

  .home-dashboard-section-head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .home-dashboard-section-head p {
    max-width: none;
    text-align: left;
  }

  .home-dashboard-header-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .home-dashboard-title-row {
    gap: 10px;
  }

  .home-dashboard-title-logo {
    width: 46px;
    height: 46px;
  }

  .home-dashboard-phase-grid {
    max-height: none;
    padding-right: 0;
  }

  .home-dashboard-phase-countdown-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-dashboard-phase-countdown h2 {
    max-width: none;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .home-dashboard-phase-countdown-unit strong {
    font-size: clamp(5.6rem, 18vw, 7.8rem);
  }

  .home-dashboard-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.activity-priority-note {
  margin: 2px auto 0;
  max-width: 40rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.account-page .auth-main {
  align-items: start;
}

.account-shell {
  width: min(100%, 1080px);
  display: grid;
  gap: 28px;
}

.account-header {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.account-reminder {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(53, 120, 246, 0.34);
  border-radius: 18px;
  color: #103b86;
  background: rgba(53, 120, 246, 0.1);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
}

.account-reminder p {
  margin: 0;
}

.account-reminder-action {
  flex: 0 0 auto;
  border: 1px solid rgba(53, 120, 246, 0.28);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 24px;
}

.account-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.account-summary {
  display: grid;
  gap: 22px;
}

.account-summary-head {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.account-summary-media {
  position: relative;
  width: 84px;
  height: 84px;
}

.account-summary-mark {
  width: 72px;
  height: 72px;
}

.account-summary-avatar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.account-summary h2,
.account-section-head h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.account-meta {
  display: grid;
  gap: 16px;
}

.account-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.account-meta strong {
  font-size: 1rem;
  font-weight: 600;
}

.account-links,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-actions-danger {
  justify-content: flex-start;
}

.account-danger {
  border-color: rgba(215, 0, 21, 0.14);
}

.account-editor {
  display: grid;
  gap: 20px;
}

.account-section-head h2 {
  margin-top: 10px;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--subtle);
  line-height: 1.55;
}

.account-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.account-secondary {
  display: grid;
  gap: 20px;
}

.account-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.account-link-item {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 180ms ease, border-color 180ms ease;
}

.account-link-item:hover,
.account-link-item:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.account-link-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.account-link-item span {
  color: var(--subtle);
  line-height: 1.6;
}

.account-tagline {
  margin: -4px 0 0;
  color: var(--subtle);
  font-size: 0.94rem;
  line-height: 1.55;
}

.account-community {
  display: grid;
  gap: 20px;
}

.community-profile-form {
  gap: 20px;
}

.community-avatar-panel {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.community-avatar-preview-shell {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px dashed rgba(29, 29, 31, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.community-avatar-preview,
.community-avatar-placeholder {
  width: 100%;
  height: 100%;
}

.community-avatar-preview {
  object-fit: cover;
}

.community-avatar-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.community-avatar-preview:not([hidden]) + .community-avatar-placeholder {
  display: none;
}

.community-avatar-controls {
  display: grid;
  gap: 12px;
}

.multi-entry-list {
  display: grid;
  gap: 12px;
}

.multi-entry-row {
  display: grid;
  gap: 12px;
  align-items: start;
}

.multi-entry-row.is-1-field {
  grid-template-columns: minmax(0, 1fr) auto;
}

.multi-entry-row.is-2-field {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr) auto;
}

.multi-entry-row.is-3-field {
  grid-template-columns: minmax(180px, 0.85fr) minmax(160px, 0.8fr) minmax(0, 1.35fr) auto;
}

.multi-entry-row .auth-field {
  min-width: 0;
}

.multi-entry-remove {
  min-width: 110px;
  min-height: 52px;
  padding-inline: 16px;
  align-self: stretch;
}

.multi-entry-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
}

.multi-entry-actions .button {
  min-height: 42px;
  padding: 0 16px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.community-grid-tight {
  gap: 12px 16px;
}

.auth-grid-single {
  grid-template-columns: 1fr;
}

.community-fieldset {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.community-fieldset legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-pill {
  position: relative;
  cursor: pointer;
}

.option-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.option-pill span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.92rem;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.option-pill span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(29, 29, 31, 0.22);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #ffffff;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.option-pill input:checked + span {
  border-color: rgba(10, 132, 255, 0.28);
  color: #0a84ff;
  background: rgba(10, 132, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.08);
}

.option-pill input:checked + span::before {
  border-color: #0a84ff;
  background: #0a84ff;
}

.radio-stack {
  display: grid;
  gap: 10px;
}

.option-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  cursor: pointer;
}

.option-row input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  border: 1.5px solid rgba(29, 29, 31, 0.24);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #ffffff;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.option-row input:checked {
  border-color: #0a84ff;
  background: #0a84ff;
}

.option-row-check {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.option-row-check input {
  appearance: none;
  border-radius: 6px;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.option-row-check input:checked {
  border-color: #0a84ff;
  background: #0a84ff;
}

.welcome-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.welcome-confetti-page {
  position: fixed;
  inset: 0;
  opacity: 1;
}

.welcome-confetti-piece {
  position: absolute;
  left: var(--confetti-left, 50vw);
  top: -18vh;
  width: var(--confetti-width, 12px);
  height: var(--confetti-height, 34px);
  opacity: 0;
  border-radius: var(--confetti-radius, 999px);
  transform-origin: center center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 18px rgba(0, 0, 0, 0.06);
  animation: welcome-confetti-fall var(--confetti-duration, 8s) linear var(--confetti-delay, 0s) forwards;
  will-change: transform, opacity;
}

.welcome-confetti-piece.is-square {
  border-radius: 4px;
}

.welcome-confetti-piece.is-rect {
  border-radius: 6px;
}

.welcome-confetti-piece.is-streamer {
  border-radius: 999px;
}

@keyframes welcome-confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -18vh, 0) rotate(var(--confetti-rotate-start, 0deg));
  }
  7% {
    opacity: var(--confetti-opacity, 0.9);
  }
  50% {
    opacity: var(--confetti-opacity, 0.9);
    transform: translate3d(var(--confetti-drift-mid, 24px), 54vh, 0) rotate(var(--confetti-rotate-mid, 180deg));
  }
  100% {
    opacity: 0.76;
    transform: translate3d(var(--confetti-drift-end, -18px), 118vh, 0) rotate(var(--confetti-rotate-end, 320deg));
  }
}


:root[data-theme="dark"] .auth-body {
  background: #000000;
  color: #f5f5f7;
}

:root[data-theme="dark"] body.auth-body.welcome-page,
:root[data-theme="dark"] .welcome-page .auth-main {
  background: #000000;
  color: #f5f5f7;
}

:root[data-theme="dark"] .topbar-mobile-nav {
  background: transparent;
}

:root[data-theme="dark"] .topbar-mobile-panel {
  color: #10141a;
  background: rgba(255, 255, 255, 0.96);
}

:root[data-theme="dark"] .topbar-mobile-account strong,
:root[data-theme="dark"] .topbar-mobile-account span {
  color: #10141a;
}

:root[data-theme="dark"] .auth-brand-name,
:root[data-theme="dark"] .auth-field label,
:root[data-theme="dark"] .auth-header h1 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .auth-kicker,
:root[data-theme="dark"] .auth-header p,
:root[data-theme="dark"] .auth-note,
:root[data-theme="dark"] .auth-secondary p,
:root[data-theme="dark"] .welcome-card p {
  color: #a1a1a6;
}

:root[data-theme="dark"] body.auth-body.welcome-page .auth-kicker,
:root[data-theme="dark"] body.auth-body.welcome-page .auth-header p,
:root[data-theme="dark"] body.auth-body.welcome-page .welcome-card p,
:root[data-theme="dark"] body.auth-body.welcome-page .profile-inline-note {
  color: #a1a1a6;
}

:root[data-theme="dark"] body.auth-body.welcome-page .auth-brand-name,
:root[data-theme="dark"] body.auth-body.welcome-page .auth-header h1,
:root[data-theme="dark"] body.auth-body.welcome-page .welcome-card h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] body.auth-body.welcome-page .welcome-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(20, 25, 34, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body.auth-body.welcome-page .auth-brand-avatar {
  border-color: rgba(255, 255, 255, 0.14);
}

:root[data-theme="dark"] .home-welcome {
  color: #f5f7fb;
  background: #000000;
}

:root[data-theme="dark"] .home-welcome-copy p {
  color: rgba(245, 247, 251, 0.76);
}

:root[data-theme="dark"] .home-dashboard-header-meta,
:root[data-theme="dark"] .home-dashboard-phase-card,
:root[data-theme="dark"] .home-dashboard-activity-card {
  background: rgba(28, 28, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .home-dashboard-header-copy p,
:root[data-theme="dark"] .home-dashboard-live-copy,
:root[data-theme="dark"] .home-dashboard-phase-countdown p,
:root[data-theme="dark"] .home-dashboard-phase-date,
:root[data-theme="dark"] .home-dashboard-phase-note,
:root[data-theme="dark"] .home-dashboard-phase-blurb,
:root[data-theme="dark"] .home-dashboard-phase-card small,
:root[data-theme="dark"] .home-dashboard-panel-head p,
:root[data-theme="dark"] .home-dashboard-activity-schedule,
:root[data-theme="dark"] .home-dashboard-activity-legacy,
:root[data-theme="dark"] .home-dashboard-activity-status,
:root[data-theme="dark"] .home-dashboard-activity-card p {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .home-dashboard-phase-card.is-selected {
  box-shadow:
    0 0 0 4px rgba(10, 132, 255, 0.96),
    0 22px 42px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .home-dashboard-phase-dot {
  background: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .home-dashboard-phase-dot.is-selected {
  background: #0a84ff;
}

:root[data-theme="dark"] .home-about-join-card,
:root[data-theme="dark"] .home-signal-today-card,
:root[data-theme="dark"] .home-path-card,
:root[data-theme="dark"] .home-recent-signal-card {
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .home-about-join-card {
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .home-signal-mini,
:root[data-theme="dark"] .home-path-link,
:root[data-theme="dark"] .home-recent-signal-item {
  background: rgba(28, 28, 30, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .home-path-link {
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .home-path-link::after {
  background: rgba(10, 132, 255, 0.16);
  color: #6fb2ff;
}

:root[data-theme="dark"] .platform-photo-preview-signal {
  border-top-color: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .home-dashboard-phase-countdown {
  background: transparent;
}

:root[data-theme="dark"] .home-about-phase-countdown {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .home-dashboard-phase-countdown-unit {
  background: rgba(28, 28, 30, 0.88);
}

:root[data-theme="dark"] .home-dashboard-phase-countdown-unit span {
  color: rgba(245, 245, 247, 0.56);
}

:root[data-theme="dark"] .home-dashboard-phase-note {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="before-start"] .home-dashboard-phase-note {
  background: rgba(255, 159, 10, 0.22);
  color: #ffd28a;
}

:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="monday"] .home-dashboard-phase-note {
  background: rgba(52, 199, 89, 0.22);
  color: #92f0af;
}

:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="tuesday"] .home-dashboard-phase-note,
:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="wednesday"] .home-dashboard-phase-note,
:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="thursday"] .home-dashboard-phase-note {
  background: rgba(10, 132, 255, 0.22);
  color: #8ec7ff;
}

:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="friday"] .home-dashboard-phase-note {
  background: rgba(255, 45, 85, 0.22);
  color: #ff9ab1;
}

:root[data-theme="dark"] .home-dashboard-phase-card[data-phase-key="ended"] .home-dashboard-phase-note {
  background: rgba(120, 120, 128, 0.22);
  color: rgba(245, 245, 247, 0.72);
}

:root[data-theme="dark"] .home-dashboard-meta-item {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .home-dashboard-header-copy h1,
:root[data-theme="dark"] .home-dashboard-header-meta strong,
:root[data-theme="dark"] .home-dashboard-phase-countdown h2,
:root[data-theme="dark"] .home-dashboard-phase-countdown-unit strong,
:root[data-theme="dark"] .home-dashboard-panel-head h2,
:root[data-theme="dark"] .home-dashboard-section-head h2,
:root[data-theme="dark"] .home-dashboard-section-head h3,
:root[data-theme="dark"] .home-dashboard-meta-item strong,
:root[data-theme="dark"] .home-dashboard-phase-count {
  color: #f5f5f7;
}

:root[data-theme="dark"] .home-dashboard-activity-card {
  background: rgba(28, 28, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .home-dashboard-activity-card[data-activity-key="community-forum"] {
  background: rgba(28, 28, 30, 0.9);
}

:root[data-theme="dark"] .home-dashboard-activity-card p,
:root[data-theme="dark"] .home-dashboard-activity-status,
:root[data-theme="dark"] .home-dashboard-activity-legacy,
:root[data-theme="dark"] .home-dashboard-activity-marker {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .home-dashboard-activity-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 247, 0.76);
}

:root[data-theme="dark"] .home-dashboard-activity-pill[data-tone="active"] {
  background: rgba(52, 199, 89, 0.18);
  color: #7ce39a;
}

:root[data-theme="dark"] .home-dashboard-activity-pill[data-tone="upcoming"] {
  background: rgba(255, 159, 10, 0.18);
  color: #ffd28a;
}

:root[data-theme="dark"] .home-dashboard-activity-pill[data-tone="ended"] {
  background: rgba(120, 120, 128, 0.18);
  color: rgba(245, 245, 247, 0.72);
}

:root[data-theme="dark"] .home-dashboard-activity-meta-row,
:root[data-theme="dark"] .home-dashboard-activity-meta-row strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] .home-dashboard-date-card-day {
  color: #f5f5f7;
}

:root[data-theme="dark"] .home-dashboard-date-card-weekday {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .home-dashboard-section-head-panel {
  border-top: 0;
}

:root[data-theme="dark"] .home-dashboard-activity-marker,
:root[data-theme="dark"] .home-dashboard-activity-status {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .home-dashboard-activity-marker {
  background: transparent;
  color: rgba(245, 245, 247, 0.72);
}

:root[data-theme="dark"] .account-card,
:root[data-theme="dark"] .account-link-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .account-link-item span,
:root[data-theme="dark"] .account-check {
  color: #a1a1a6;
}

:root[data-theme="dark"] .auth-warning {
  border-color: rgba(10, 132, 255, 0.18);
  color: #bfdcff;
  background: rgba(10, 132, 255, 0.12);
}

:root[data-theme="dark"] .activities-status,
:root[data-theme="dark"] .activities-page-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .activities-page,
:root[data-theme="dark"] .activities-formal-main {
  background: #000000;
  color: #f5f5f7;
}

:root[data-theme="dark"] .activities-hero,
:root[data-theme="dark"] .activities-timeline-band,
:root[data-theme="dark"] .activities-search,
:root[data-theme="dark"] .activities-directory,
:root[data-theme="dark"] .activities-footer-shell,
:root[data-theme="dark"] .activities-timeline-shell {
  background: transparent;
}

:root[data-theme="dark"] .activities-hero h1,
:root[data-theme="dark"] .activities-live-phase-title,
:root[data-theme="dark"] .activities-timeline-step strong,
:root[data-theme="dark"] .activity-directory-block strong,
:root[data-theme="dark"] .activity-directory-status strong,
:root[data-theme="dark"] .activity-directory-sheet h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .activities-page-status span,
:root[data-theme="dark"] .activities-status p,
:root[data-theme="dark"] .activities-page-card p,
:root[data-theme="dark"] .activities-page-card li {
  color: #a1a1a6;
}

:root[data-theme="dark"] .auth-check {
  color: #c7ccd6;
}

:root[data-theme="dark"] .auth-check-box {
  border-color: rgba(255, 255, 255, 0.22);
  background: #1f1f22;
}


:root[data-theme="dark"] .welcome-card h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .auth-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .auth-field input,
:root[data-theme="dark"] .auth-field select,
:root[data-theme="dark"] .auth-field textarea {
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
  background: #1f1f22;
}

:root[data-theme="dark"] .auth-field input::placeholder,
:root[data-theme="dark"] .auth-field textarea::placeholder {
  color: #6e6e73;
}

:root[data-theme="dark"] .auth-brand-avatar,
:root[data-theme="dark"] .topbar-avatar {
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .profile-inline-note,
:root[data-theme="dark"] .account-tagline {
  color: #9d9da4;
}

:root[data-theme="dark"] .community-avatar-preview-shell,
:root[data-theme="dark"] .community-fieldset,
:root[data-theme="dark"] .option-row-check {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.82);
}

:root[data-theme="dark"] .option-pill span {
  border-color: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
  background: #1f1f22;
}

:root[data-theme="dark"] .option-pill span::before {
  border-color: rgba(255, 255, 255, 0.2);
  background: #1f1f22;
  box-shadow: inset 0 0 0 3px #1f1f22;
}

:root[data-theme="dark"] .option-row input {
  border-color: rgba(255, 255, 255, 0.22);
  background: #1f1f22;
  box-shadow: inset 0 0 0 3px #1f1f22;
}

:root[data-theme="dark"] .option-pill input:checked + span {
  border-color: rgba(10, 132, 255, 0.36);
  background: rgba(10, 132, 255, 0.18);
  color: #7cc7ff;
}

:root[data-theme="dark"] .auth-feedback.is-error {
  color: #ffb4b4;
  background: rgba(213, 53, 53, 0.14);
}

:root[data-theme="dark"] .auth-feedback.is-success {
  color: #b8f5c8;
  background: rgba(52, 199, 89, 0.16);
}

:root[data-theme="dark"] .account-reminder {
  border-color: rgba(90, 170, 255, 0.38);
  color: #b8dbff;
  background: rgba(10, 132, 255, 0.16);
}

:root[data-theme="dark"] .activity-status-pill {
  border-color: rgba(52, 199, 89, 0.58);
  background: rgba(52, 199, 89, 0.14);
  color: #8df0ab;
}

:root[data-theme="dark"] .account-danger {
  border-color: rgba(255, 69, 58, 0.22);
}

:root[data-theme="dark"] .support-contact-card,
:root[data-theme="dark"] .support-search-box,
:root[data-theme="dark"] .support-request-card,
:root[data-theme="dark"] .authority-support-item {
  background: rgba(17, 19, 24, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .support-request-page,
:root[data-theme="dark"] .support-request-main {
  background: #f5f5f7;
  color: #1d1d1f;
}

:root[data-theme="dark"] .support-request-page .support-request-card {
  background: transparent;
  border-color: transparent;
}

:root[data-theme="dark"] .support-request-page .support-request-hero p,
:root[data-theme="dark"] .support-request-page .support-request-note,
:root[data-theme="dark"] .support-request-page .authority-support-meta,
:root[data-theme="dark"] .support-request-page .support-apple-note {
  color: rgba(29, 29, 31, 0.72);
}

:root[data-theme="dark"] .support-request-page .auth-field label,
:root[data-theme="dark"] .support-request-page .auth-header h1,
:root[data-theme="dark"] .support-request-page .support-hero h1,
:root[data-theme="dark"] .support-request-page .support-hero .support-title-prefix,
:root[data-theme="dark"] .support-request-page .section-kicker {
  color: #1d1d1f;
}

:root[data-theme="dark"] .support-request-page .auth-field input,
:root[data-theme="dark"] .support-request-page .auth-field select,
:root[data-theme="dark"] .support-request-page .auth-field textarea,
:root[data-theme="dark"] .support-request-page .authority-support-item,
:root[data-theme="dark"] .support-request-page .support-search-box {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(10, 132, 255, 0.14);
  color: #1d1d1f;
}

:root[data-theme="dark"] .support-request-page .auth-field input::placeholder,
:root[data-theme="dark"] .support-request-page .auth-field textarea::placeholder {
  color: rgba(29, 29, 31, 0.42);
}

:root[data-theme="dark"] .activity-directory-sheet {
  background: rgba(17, 19, 24, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .support-hero p,
:root[data-theme="dark"] .support-contact-copy p,
:root[data-theme="dark"] .authority-support-meta,
:root[data-theme="dark"] .support-search-empty,
:root[data-theme="dark"] .support-apple-note {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .support-contact-symbol {
  background: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .activity-directory-card .support-contact-symbol {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.2);
}

:root[data-theme="dark"] .activity-directory-back-symbol {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 26px rgba(0, 0, 0, 0.2);
}

:root[data-theme="dark"] .activity-directory-toggle {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.92);
  color: #f5f5f7;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

:root[data-theme="dark"] .activities-timeline-step {
  background: transparent;
}

:root[data-theme="dark"] .activities-timeline-row::before {
  background: rgba(255, 255, 255, 0.14);
}

:root[data-theme="dark"] .activities-timeline-symbol {
  background: transparent;
}

:root[data-theme="dark"] .activities-timeline-row::after {
  background: rgba(255, 255, 255, 0.36);
}

:root[data-theme="dark"] .activities-timeline-step::before {
  background: rgba(255, 255, 255, 0.82);
}

:root[data-theme="dark"] .activities-live-card {
  background: rgba(28, 28, 30, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .activities-live-card[data-tone="active"] {
  background: rgba(28, 28, 30, 0.88);
}

:root[data-theme="dark"] .activities-live-card[data-tone="upcoming"] {
  background: rgba(28, 28, 30, 0.88);
}

:root[data-theme="dark"] .activities-live-card[data-tone="ended"] {
  background: rgba(36, 36, 39, 0.88);
}

:root[data-theme="dark"] .activities-live-card-copy,
:root[data-theme="dark"] .activities-live-head p,
:root[data-theme="dark"] .activities-timeline-time,
:root[data-theme="dark"] .activities-timeline-step p,
:root[data-theme="dark"] .activities-overview-copy {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .activities-live-card-title,
:root[data-theme="dark"] .activities-live-card-label {
  color: #f5f5f7;
}

:root[data-theme="dark"] .activities-live-phase-note {
  color: rgba(230, 235, 244, 0.72);
}

:root[data-theme="dark"] .activity-attendance-note {
  color: #f3cf68;
}

:root[data-theme="dark"] .activity-tag {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(230, 235, 244, 0.82);
}

:root[data-theme="dark"] .activities-timeline-pop {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.96);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .activities-timeline-pop strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] .activity-status-pill[data-tone="active"],
:root[data-theme="dark"] .activities-timeline-state-pill[data-tone="active"] {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #8fc5ff;
}

:root[data-theme="dark"] .activity-status-pill[data-tone="upcoming"],
:root[data-theme="dark"] .activities-timeline-state-pill[data-tone="upcoming"] {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #ffd17d;
}

:root[data-theme="dark"] .activity-status-pill[data-tone="ended"],
:root[data-theme="dark"] .activities-timeline-state-pill[data-tone="ended"] {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #c2c5ce;
}

:root[data-theme="dark"] .activities-search .support-search-box,
:root[data-theme="dark"] .activity-directory-sheet,
:root[data-theme="dark"] .activity-directory-status,
:root[data-theme="dark"] .activities-timeline-step,
:root[data-theme="dark"] .activities-timeline-step strong,
:root[data-theme="dark"] .platform-item {
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .support-contact-media-blue {
  background: linear-gradient(180deg, rgba(18, 54, 108, 0.96), rgba(22, 66, 132, 0.98));
  color: #b9d8ff;
}

:root[data-theme="dark"] .support-contact-media-green {
  background: linear-gradient(180deg, rgba(24, 72, 34, 0.96), rgba(30, 92, 42, 0.98));
  color: #bdeac5;
}

:root[data-theme="dark"] .support-contact-media-orange {
  background: linear-gradient(180deg, rgba(90, 49, 12, 0.96), rgba(118, 64, 18, 0.98));
  color: #ffd3a1;
}

:root[data-theme="dark"] .support-contact-media-purple {
  background: linear-gradient(180deg, rgba(61, 38, 112, 0.96), rgba(79, 50, 143, 0.98));
  color: #dacbff;
}

:root[data-theme="dark"] .support-contact-media-neutral {
  background: linear-gradient(180deg, rgba(41, 46, 55, 0.96), rgba(29, 33, 40, 0.98));
  color: #e2e8f0;
}

:root[data-theme="dark"] .support-contact-media-host {
  background: linear-gradient(180deg, rgba(103, 35, 53, 0.96), rgba(129, 44, 67, 0.98));
  color: #ffd0db;
}

:root[data-theme="dark"] .support-search-box input {
  color: #f5f7fb;
}


@media (max-width: 640px) {
  .auth-main {
    padding: 32px 16px;
  }

  .auth-card {
    padding: 20px;
    border-radius: 24px;
  }

  .auth-header h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .auth-brand-mark {
    width: min(160px, 42vw);
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .support-hero {
    padding-top: 28px;
  }

  .support-hero-mark {
    width: 78px;
    height: 78px;
  }

  .support-hero-mark img {
    width: 42px;
    height: 42px;
  }

  .support-contact-content,
  .support-contact-card,
  .support-request-grid,
  .activity-directory-sheet {
    grid-template-columns: 1fr;
  }

  .activity-directory-scene,
  .activity-directory-sheet {
    height: 900px;
  }

  .support-contact-media {
    min-height: 180px;
    padding: 22px 18px;
  }

  .support-contact-content {
    padding: 22px 18px;
  }

  .activity-directory-backside {
    height: auto;
    min-height: 0;
    padding: 0;
    display: none;
  }

  .activity-directory-content {
    padding: 22px 18px;
  }

  .activity-directory-sheet.back .activity-directory-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .activity-directory-sheet.back .activity-directory-copy {
    min-height: 100%;
    height: auto;
    overflow: visible;
    align-content: start;
    padding-bottom: 24px;
    padding-right: 0;
  }

  .support-contact-meta {
    justify-items: stretch;
  }

  .support-contact-meta .button {
    width: 100%;
  }

  .support-request-actions .button {
    width: 100%;
  }

  .activity-directory-meta {
    position: static;
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .activity-directory-toggle {
    width: 100%;
    border-radius: 999px;
  }
}

@media (max-width: 1100px) {
  .home-dashboard-header,
  .home-dashboard-meta-grid,
  .home-dashboard-activity-list {
    grid-template-columns: 1fr;
  }

  .activity-directory-scene,
  .activity-directory-sheet,
  .activity-directory-backside {
    height: 920px;
  }

  .section-header,
  .detail-grid,
  .glance-header,
  .focus-grid,
  .note-grid,
  .audience-grid,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .glance-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .audience-grid::before {
    display: none;
  }

  .platform-gallery {
    grid-template-columns: 1fr;
  }

  .platform-bridge {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .platform-bridge-center {
    grid-template-columns: 1fr auto 1fr;
    padding-top: 0;
  }

  .account-grid,
  .account-link-grid {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-card {
    grid-template-columns: minmax(200px, 0.74fr) minmax(0, 1.2fr);
  }

  .community-grid,
  .community-avatar-panel {
    grid-template-columns: 1fr;
  }

  .multi-entry-row {
    grid-template-columns: 1fr;
  }

  .multi-entry-remove {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

@media (max-width: 860px) {
  .topbar-nav {
    gap: 18px;
  }

  .topbar-links {
    gap: 10px;
  }

  .topbar-activity-pages {
    gap: 8px;
  }

  .topbar-activity-pages a {
    font-size: 0.78rem;
  }

  .hero-brand {
    top: 37%;
    left: 50%;
  }

  .hero-mark {
    width: min(56vw, 460px);
  }

  .hero-copy {
    left: 28px;
    right: 28px;
    bottom: 126px;
    max-width: none;
  }

  .hero-copy p {
    max-width: 50ch;
  }

  .activity-scroller {
    grid-auto-columns: minmax(320px, 360px);
  }

  .support-contact-card,
  .activity-directory-sheet {
    grid-template-columns: 1fr;
  }

  .activity-timeline {
    max-width: none;
    padding-left: 36px;
    gap: 26px;
  }

  .timeline-item {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
  }

  .footer-ad {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 20px;
  }

  .footer-ad-action {
    width: 100%;
  }

  .glance-grid,
  .signal-strip,
  .audience-grid,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .activities-timeline-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 240px);
    overflow-x: auto;
    padding-bottom: 6px;
    padding-inline: 4px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar-inner {
    min-height: 62px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    width: min(calc(100% - 24px), 100%);
  }

  .topbar-nav {
    display: none;
  }

  .hero-brand {
    gap: 8px;
    top: 33%;
  }

  .topbar-actions,
  .topbar-user {
    display: none;
  }

  .topbar-mobile-controls {
    display: inline-flex;
    margin-left: auto;
  }

  .topbar-promo {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .topbar-promo-button {
    display: none;
  }

  .topbar-mobile-panel {
    display: block;
  }

  .topbar {
    overflow: hidden;
    transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease,
      max-height 260ms ease;
  }

  .topbar-shell {
    transition: background-color 220ms ease, backdrop-filter 220ms ease;
  }

  .topbar.is-mobile-open,
  .topbar.is-mobile-closing {
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    max-height: var(--app-dvh);
  }

  .topbar-shell:has(.topbar.is-mobile-open),
  .topbar-shell:has(.topbar.is-mobile-closing) {
    background: rgba(9, 13, 18, 0.94);
    backdrop-filter: blur(18px);
  }

  .topbar.is-mobile-open,
  .topbar.is-mobile-closing {
    border-bottom-color: rgba(214, 228, 255, 0.1);
    background: rgba(9, 13, 18, 0.94);
    backdrop-filter: blur(18px);
  }

  .status-body .topbar.is-mobile-open,
  .status-body .topbar.is-mobile-closing {
    border-bottom-color: rgba(16, 20, 26, 0.08);
    background: rgba(243, 244, 246, 0.96);
    backdrop-filter: blur(18px);
  }

  .status-body .topbar-shell:has(.topbar.is-mobile-open),
  .status-body .topbar-shell:has(.topbar.is-mobile-closing) {
    background: rgba(243, 244, 246, 0.96);
    backdrop-filter: blur(18px);
  }

  .topbar.is-mobile-open + .topbar-mobile-panel,
  .topbar.is-mobile-closing + .topbar-mobile-panel {
    background: inherit;
  }

  .topbar-mobile-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
    transform-origin: center;
  }

  .topbar-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .topbar-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .topbar-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .topbar-mobile-panel.is-open {
    opacity: 1;
    max-height: calc(100vh - var(--topbar-height));
    max-height: calc(100svh - var(--topbar-height));
    max-height: calc(100dvh - var(--topbar-height));
    max-height: calc(var(--app-dvh) - var(--topbar-height));
    padding-top: 8px;
    padding-bottom: calc(28px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
    transform: translateY(0);
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .topbar-mobile-panel.is-closing {
    pointer-events: none;
  }

  .hero-actions,
  .detail-actions {
    justify-content: center;
  }

  .signed-actions {
    width: 100%;
    justify-content: center;
  }

  .signed-account {
    width: 100%;
    max-width: 320px;
  }

  .home-welcome-brandrow,
  .auth-brand-row {
    gap: 12px;
  }

  .home-welcome-avatar {
    width: 72px;
    height: 72px;
  }

  .auth-brand-avatar {
    width: 54px;
    height: 54px;
  }

  .topbar-avatar {
    width: 28px;
    height: 28px;
  }

  .hero-mark {
    width: min(61vw, 268px);
  }

  .hero-year {
    font-size: min(20vw, 98px);
  }

  .hero-copy h1 {
    font-size: clamp(3.28rem, 10.9vw, 5rem);
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    column-gap: 0;
    row-gap: 0.02em;
  }

  .hero-copy h1 .hero-word,
  .hero-copy h1 .hero-lockup {
    display: block;
  }

  .hero-copy {
    left: 50%;
    right: auto;
    width: min(calc(100% - 44px), 328px);
    display: grid;
    align-content: end;
    justify-items: center;
    gap: 3px;
    text-align: center;
    transform: translate(-50%, var(--copy-shift-y));
  }

  .hero-copy > p:not(.hero-copy-mobile-short) {
    display: none;
  }

  .hero-copy-mobile-short {
    display: block;
    max-width: 24ch;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-label {
    justify-content: center;
    gap: 0.03em;
    line-height: 1.32;
    font-size: 0.48rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero-label-desktop {
    display: none;
  }

  .hero-label-mobile {
    display: inline;
  }

  .hero-label-icon {
    margin-right: 0.05rem;
    font-size: 0.62rem;
  }

  .hero-label-apple {
    font-size: 0.62rem;
  }

  .hero-accent-row {
    justify-content: center;
    margin-top: 8px;
  }

  .event-accent {
    min-height: 20px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .event-accent-pair {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .hero-event-accent-link {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    max-width: 214px;
    min-height: 22px;
    padding: 3px 9px;
    font-size: 0.62rem;
  }

  .event-accent-apple-mark {
    width: 1.08em;
    height: 1.08em;
    font-size: 0.6rem;
  }

  .hero-event-accent-logo {
    font-size: 0.66rem;
  }

  .hero-actions {
    position: absolute;
    right: 20px;
    bottom: calc(20px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .detail-actions {
    position: static;
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-actions .button,
  .detail-actions .button {
    width: 100%;
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .hero-actions > .button {
    width: 100%;
  }

  .hero-actions .signed-actions[data-auth-guest] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .signed-actions[data-auth-guest] .button {
    width: 100%;
    min-width: 0;
  }

  .activities-hero-mark img {
    width: 96px;
    height: 96px;
  }

  .activities-timeline-row {
    --activities-timeline-step-width: 68vw;
    grid-auto-columns: var(--activities-timeline-step-width);
  }

  .activities-timeline-step strong {
    font-size: 1.35rem;
  }

  .activities-timeline-pop {
    display: none;
  }

  .activity-scroller {
    grid-auto-columns: minmax(84vw, 84vw);
  }

  .activity-timeline {
    margin-top: 44px;
    margin-bottom: 88px;
    padding-left: 24px;
    gap: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item::before {
    left: -21px;
    top: 7px;
    width: 11px;
    height: 11px;
  }

  .timeline-line {
    left: 4px;
  }

  .timeline-item strong {
    font-size: 1.2rem;
  }

  .timeline-item p {
    font-size: 0.96rem;
  }

  .intro-stage {
    inset: 86px 0 auto;
  }

  .intro-stage p {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.02;
  }

  .footer-sitemap,
  .footer-legal,
  .footer-path {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-ad-mark {
    width: 54px;
    height: 54px;
  }

  .theme-picker-inline {
    width: fit-content;
    max-width: 100%;
  }

  .glance-header h2,
  .audience-block h2,
  .action-block h2,
  .focus-copy h2,
  .prep-panel h2,
  .host-note-card h2 {
    font-size: clamp(2.1rem, 10vw, 2.85rem);
  }

  .glance-title {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .glance-subtitle {
    font-size: 1.06rem;
  }

  .action-item,
  .journey-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .action-item span,
  .journey-step span {
    width: 36px;
    height: 36px;
    font-size: 0.84rem;
  }

  .community-avatar-preview-shell {
    width: 112px;
    height: 112px;
  }

  .option-grid {
    gap: 8px;
  }

  .home-closing-meta {
    grid-template-columns: 1fr;
  }

  .home-host-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-accent {
    font-size: 0.98rem;
  }

  .activities-main {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .activities-shell {
    gap: 22px;
  }

  .activities-status,
  .activities-page-card {
    padding: 20px;
    border-radius: 24px;
  }

  .activities-status {
    grid-template-columns: 1fr;
  }

  .activities-page-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (orientation: portrait) and (max-width: 900px) {
  .hero-sticky {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: var(--app-dvh);
  }

  .hero-copy {
    bottom: calc(var(--hero-actions-height) + 36px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
    max-width: none;
  }

  .hero-actions {
    right: 24px;
    bottom: calc(24px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
    left: 24px;
    justify-content: flex-start;
  }

  .activity-scroller {
    grid-auto-columns: minmax(86vw, 86vw);
  }

  .activity-card,
  .activity-inner {
    min-height: 560px;
    height: 560px;
    max-height: 560px;
  }

  .detail-shell {
    padding-bottom: 112px;
  }
}

@media (orientation: portrait) and (max-width: 600px) {
  .hero-year {
    display: none !important;
  }

  .hero-brand {
    top: 27%;
    gap: 0;
  }

  .hero-mark {
    width: min(54vw, 208px);
  }

  .hero-copy {
    top: auto;
    bottom: calc(var(--hero-actions-height) + 36px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
  }

  .hero-actions {
    display: flex !important;
    right: 20px;
    bottom: calc(20px + max(env(safe-area-inset-bottom, 0px), var(--viewport-bottom-inset)));
    left: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.76rem, 10.1vw, 3.82rem);
    margin-top: 10px;
  }

  .hero-copy-mobile-short {
    max-width: 22ch;
    font-size: 0.72rem;
  }

  .hero-label {
    font-size: 0.46rem;
  }

  .event-accent,
  .hero-event-accent-link {
    font-size: 0.58rem;
  }

  .hero-label-icon,
  .hero-label-apple {
    font-size: 0.58rem;
  }

  .event-accent-apple-mark {
    width: 1.04em;
    height: 1.04em;
    font-size: 0.56rem;
  }

  .hero-event-accent-logo {
    font-size: 0.62rem;
  }

  .hero-actions .button {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .intro-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-week-wish p {
    max-width: 14ch;
  }

  .home-joined-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-host-card,
  .home-host-copy {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .topbar-inner {
    gap: 12px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .topbar-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.46rem, 10.4vw, 3.42rem);
  }

  .hero-copy p {
    font-size: 0.7rem;
  }

  .hero-label {
    font-size: 0.42rem;
  }

  .event-accent,
  .hero-event-accent-link {
    font-size: 0.54rem;
  }

  .hero-label-icon,
  .hero-label-apple {
    font-size: 0.56rem;
  }

  .event-accent-apple-mark {
    width: 1em;
    height: 1em;
    font-size: 0.52rem;
  }

  .hero-event-accent-logo {
    font-size: 0.58rem;
  }

  .hero-actions .button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .activity-scroller {
    grid-auto-columns: minmax(88vw, 88vw);
  }

  .activity-card,
  .activity-inner {
    min-height: 520px;
    height: 520px;
    max-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.topbar-management-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 6px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, var(--surface) 86%);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.authority-account-shell {
  max-width: 760px;
}

.account-role-badges {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 16%, var(--surface) 84%);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.account-role-badges-host {
  background: rgba(255, 122, 26, 0.14);
  color: #d96b00;
}

.account-system-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  margin: 6px auto 4px;
  padding: 0 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 18%, var(--surface) 82%);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.authority-warning {
  border: 2px solid rgba(186, 26, 26, 0.18);
  border-radius: 24px;
  background: rgba(186, 26, 26, 0.09);
  padding: 20px 22px;
  display: grid;
  gap: 10px;
}

.authority-warning strong {
  color: #b42318;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.authority-warning p {
  margin: 0;
  color: #9f1239;
  font-weight: 600;
  line-height: 1.6;
}

.authority-page .auth-main,
.authority-main {
  width: min(1360px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 120px 0 96px;
}

.authority-shell {
  display: grid;
  gap: 28px;
}

.authority-header {
  display: grid;
  gap: 22px;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.authority-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.authority-system-list,
.authority-user-list {
  display: grid;
  gap: 14px;
  max-width: 100%;
}

.authority-system-item,
.authority-user-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--surface) 90%, var(--background) 10%);
  min-width: 0;
}

.authority-system-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.authority-system-item p,
.authority-user-copy p,
.authority-user-copy small,
.authority-capability {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.authority-user-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.authority-user-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.authority-user-copy strong {
  overflow-wrap: anywhere;
}

.authority-user-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  min-width: 0;
}

.authority-detail-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 92%, var(--background) 8%);
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.authority-detail-block strong {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.authority-detail-block p {
  margin: 0;
  color: var(--muted-strong);
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.authority-link-list {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.authority-link-list a {
  color: var(--primary);
  word-break: break-word;
}

.authority-edit-form {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 94%, var(--background) 6%);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.authority-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.authority-edit-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.authority-edit-grid input,
.authority-edit-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
  background: var(--surface);
}

.authority-edit-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.authority-notification-form {
  display: grid;
  gap: 12px;
}

.authority-notification-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.authority-notification-form input,
.authority-notification-form textarea,
.authority-notification-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
  background: var(--surface);
}

.authority-notification-form textarea {
  min-height: 132px;
  resize: vertical;
}

.authority-edit-wide {
  grid-column: 1 / -1;
}

.authority-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.authority-user-actions,
.authority-system-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 0;
}

.authority-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-secondary);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.authority-pill-host {
  background: color-mix(in srgb, var(--primary) 14%, var(--surface) 86%);
  color: var(--primary);
}

.authority-role-button {
  min-width: 142px;
}

.authority-support-list {
  max-width: 100%;
}

.authority-support-item {
  min-width: 0;
}

.authority-support-head,
.authority-support-meta,
.authority-support-description,
.authority-support-actions {
  min-width: 0;
}

.authority-support-meta span,
.authority-support-description {
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-user-item {
    grid-template-columns: 1fr;
  }

  .authority-user-detail-grid {
    grid-template-columns: 1fr;
  }

  .authority-edit-grid {
    grid-template-columns: 1fr;
  }

  .authority-user-actions,
  .authority-system-meta {
    justify-items: start;
  }
}

.community-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(50, 120, 255, 0.05), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 150, 52, 0.05), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(70, 160, 130, 0.05), transparent 30%),
    var(--paper);
}

.community-directory-shell {
  padding-top: var(--topbar-height);
  padding-bottom: 0;
}

.community-directory-shell > .wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.community-cloud {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - var(--topbar-height));
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.community-stage {
  position: relative;
  width: 100vw;
}

.community-overlay {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 5;
  display: grid;
  gap: 8px;
  max-width: min(620px, calc(100% - 56px));
  pointer-events: none;
}

.community-overlay h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.9vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.community-overlay p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.6;
}

.community-overlay-bottom {
  top: auto;
  bottom: 24px;
  left: 28px;
  max-width: min(540px, calc(100% - 56px));
  gap: 4px;
}

.community-viewport {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--topbar-height));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.community-canvas {
  position: relative;
  min-width: 100%;
  min-height: 100%;
}

.community-cloud-list {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: max-content;
  transform-origin: top left;
}

.community-honey-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 118px;
}

.community-honey-row-lead {
  gap: 28px;
  min-height: 136px;
  margin-bottom: 10px;
}

.community-honey-row.is-offset {
  padding-left: 64px;
}

.community-directory-note {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.92rem;
  line-height: 1.58;
}

.community-directory-note-secondary {
  color: rgba(15, 23, 42, 0.56);
}

.community-directory-empty {
  margin: 20px auto 0;
  max-width: 660px;
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.community-bubble {
  position: relative;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: scale(var(--bubble-edge-scale, 1));
  transition: transform 220ms ease;
  will-change: transform, opacity;
}

.community-bubble.is-entering {
  opacity: 0;
  transform: translateY(-140px) scale(calc(var(--bubble-edge-scale, 1) * 0.86));
  animation: communityBubbleDrop 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--bubble-enter-delay, 0ms);
}

.community-bubble:hover,
.community-bubble:focus-visible {
  transform: translateY(-4px) scale(calc(var(--bubble-edge-scale, 1) * 1.04));
}

.community-bubble-special {
  width: 118px;
  height: 118px;
}

.community-bubble-role-mark {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.community-bubble-special:first-child .community-bubble-role-mark {
  color: #ff9f3b;
}

.community-bubble-label {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translate(-50%, 14px);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition: opacity 240ms ease, transform 240ms ease;
}

.community-bubble:hover .community-bubble-label,
.community-bubble:focus-visible .community-bubble-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.community-bubble-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}


.community-bubble-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2f7df6, #6fb6ff);
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}

@keyframes communityBubbleDrop {
  0% {
    opacity: 0;
    transform: translateY(-140px) scale(calc(var(--bubble-edge-scale, 1) * 0.86));
  }

  72% {
    opacity: 1;
    transform: translateY(12px) scale(calc(var(--bubble-edge-scale, 1) * 1.02));
  }

  100% {
    opacity: 1;
    transform: scale(var(--bubble-edge-scale, 1));
  }
}

.community-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.community-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 18, 30, 0.38);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.community-modal-card {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  padding: 28px;
  border-radius: 32px;
  background: color-mix(in srgb, var(--surface) 92%, white 8%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.community-modal.is-open {
  opacity: 1;
}

.community-modal.is-open .community-modal-backdrop {
  opacity: 1;
}

.community-modal.is-open .community-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.community-modal.is-closing {
  opacity: 0;
}

.community-modal.is-closing .community-modal-backdrop {
  opacity: 0;
}

.community-modal.is-closing .community-modal-card {
  opacity: 0;
  transform: translateY(14px) scale(0.988);
}

.community-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-secondary);
  color: var(--text);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.community-modal-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.community-modal-avatar-shell {
  display: flex;
}

.community-modal-avatar {
  width: 120px;
  height: 120px;
}

.community-modal-copy {
  display: grid;
  gap: 10px;
}

.community-modal-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.community-modal-title-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.community-modal-nickname,
.community-modal-meta,
.community-modal-bio {
  margin: 0;
}

.community-modal-nickname {
  color: var(--muted);
  font-size: 0.92rem;
}

.community-modal-meta {
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.community-modal-special-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-modal-special-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.community-modal-special-badge.is-official {
  background: rgba(15, 23, 42, 0.9);
  color: #ff9f3b;
}

.community-modal-special-badge.is-bot {
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
}

.community-modal-special-badge.is-host {
  background: rgba(47, 125, 246, 0.12);
  color: #2f7df6;
}

.community-modal-special-badge-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  line-height: 1;
}

.community-modal-special-badge.is-official .community-modal-special-badge-symbol,
.community-modal-special-badge.is-bot .community-modal-special-badge-symbol {
  background: rgba(255, 255, 255, 0.14);
}

.community-modal-special-badge.is-host .community-modal-special-badge-symbol {
  background: rgba(47, 125, 246, 0.16);
}

.community-modal-special-badge-symbol {
  color: #2f7df6;
}

.community-modal-special-badge-label {
  display: inline-flex;
  align-items: center;
}

.community-modal-body {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.community-modal-identity-badge[hidden] {
  display: none;
}

.community-modal-identity-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 4px 0 2px;
  color: var(--text);
}

.community-modal-identity-card.is-official,
.community-modal-identity-card.is-bot {
  color: var(--text);
}

.community-modal-identity-card.is-host {
  color: var(--text);
}

.community-modal-identity-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.community-modal-identity-card.is-official .community-modal-identity-symbol {
  color: #2f7df6;
}

.community-modal-identity-card.is-bot .community-modal-identity-symbol {
  color: #2f7df6;
}

.community-modal-identity-card.is-host .community-modal-identity-symbol {
  color: #2f7df6;
}

.community-modal-identity-copy {
  display: grid;
  gap: 4px;
}

.community-modal-identity-copy strong {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.community-modal-identity-copy span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.community-modal-identity-card.is-host .community-modal-identity-copy span {
  color: var(--muted);
}

.community-modal-bio {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.72;
}

.community-modal-bio-empty {
  color: var(--muted);
}

.community-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.community-modal-fact {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-secondary) 86%, white 14%);
}

.community-modal-fact-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.community-modal-fact-value {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.community-modal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-modal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 125, 246, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.community-modal-links {
  display: grid;
  gap: 14px;
}

.community-modal-link-group {
  display: grid;
  gap: 10px;
}

.community-modal-link-group h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.community-modal-link-list {
  display: grid;
  gap: 10px;
}

.community-modal-link-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-secondary) 84%, white 16%);
  color: inherit;
  text-decoration: none;
}

.community-modal-link-item strong {
  font-size: 0.96rem;
  line-height: 1.3;
}

.community-modal-link-item span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  word-break: break-all;
}

.community-modal-link-kind {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.community-person-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-secondary);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.is-community-modal-open {
  overflow: hidden;
}


@media (max-width: 860px) {
  .community-directory-shell {
    padding-top: var(--topbar-height);
    padding-bottom: 32px;
  }

  .community-cloud {
    min-height: calc(100vh - var(--topbar-height));
  }

  .community-overlay {
    top: 18px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .community-overlay h1 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .community-viewport {
    height: calc(100vh - var(--topbar-height));
  }

  .community-cloud-list {
    gap: 12px;
    min-height: 320px;
  }

  .community-honey-row {
    gap: 14px;
    min-height: 96px;
  }

  .community-honey-row-lead {
    gap: 18px;
    min-height: 112px;
  }

  .community-honey-row.is-offset {
    padding-left: 30px;
  }

  .community-bubble {
    width: 88px;
    height: 88px;
  }

  .community-bubble-special {
    width: 94px;
    height: 94px;
  }

  .community-overlay-bottom {
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .community-modal-card {
    padding: 22px 18px 20px;
    border-radius: 26px;
    max-height: calc(100vh - 28px);
  }

  .community-modal-facts {
    grid-template-columns: 1fr;
  }

  .community-modal-identity-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 2px 0;
  }

  .community-modal-identity-symbol {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .community-modal-head {
    grid-template-columns: 1fr;
  }

  .community-modal-avatar-shell {
    justify-content: center;
  }

  .community-modal-copy {
    justify-items: center;
    text-align: center;
  }

  .community-modal-tags {
    justify-content: center;
  }
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) {
  background: #000000;
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .site-shell,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) main,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-main,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-page-main,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-directory-shell,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .status-main {
  background: #000000;
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar.is-solid {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 13, 0.86);
  backdrop-filter: blur(16px);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-mobile-panel {
  color: #f5f5f7;
  background: rgba(18, 18, 20, 0.98);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-mobile-account strong,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-mobile-account span {
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-user,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-account strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-account span {
  color: rgba(245, 245, 247, 0.66);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-user .button-ghost,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .topbar-avatar {
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .account-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .account-link-item,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-search-box,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-request-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .authority-support-item,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-identity-card,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-link-item,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-chip,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-fact {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-field input,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-field select,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-field textarea,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-row input,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-pill span,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-fieldset,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-row-check,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-avatar-preview-shell {
  border-color: rgba(255, 255, 255, 0.08);
  background: #1c1c1e;
  color: #f5f5f7;
  box-shadow: none;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-pill span::before,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-row input {
  background: #1c1c1e;
  box-shadow: inset 0 0 0 3px #1c1c1e;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .option-pill input:checked + span,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-warning,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .account-reminder {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-media-blue,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-media-green,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-media-orange,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-media-purple {
  background: linear-gradient(180deg, rgba(32, 32, 34, 0.96), rgba(24, 24, 26, 0.98));
  color: #f5f5f7;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-symbol,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .activity-directory-card .support-contact-symbol,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .activity-directory-back-symbol,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .activities-status-mark,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .activities-page-symbol {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
  box-shadow: none;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-blue,
:root[data-theme="dark"] .activities-page .support-contact-media-blue {
  background: linear-gradient(180deg, rgba(231, 242, 255, 0.9), rgba(219, 236, 255, 0.94));
  color: #1f63d9;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-green,
:root[data-theme="dark"] .activities-page .support-contact-media-green {
  background: linear-gradient(180deg, rgba(233, 248, 236, 0.92), rgba(220, 242, 225, 0.96));
  color: #2d8a43;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-orange,
:root[data-theme="dark"] .activities-page .support-contact-media-orange {
  background: linear-gradient(180deg, rgba(255, 241, 226, 0.94), rgba(255, 234, 210, 0.96));
  color: #d67b14;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-purple,
:root[data-theme="dark"] .activities-page .support-contact-media-purple {
  background: linear-gradient(180deg, rgba(241, 235, 255, 0.92), rgba(232, 224, 255, 0.96));
  color: #7a59d9;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-neutral,
:root[data-theme="dark"] .activities-page .support-contact-media-neutral {
  background: linear-gradient(180deg, rgba(241, 243, 247, 0.96), rgba(232, 236, 241, 0.98));
  color: #4c5564;
}

:root[data-theme="dark"] .support-page-main .support-contact-symbol,
:root[data-theme="dark"] .support-page-main .activity-directory-card .support-contact-symbol,
:root[data-theme="dark"] .support-page-main .activity-directory-back-symbol,
:root[data-theme="dark"] .activities-page .support-contact-symbol,
:root[data-theme="dark"] .activities-page .activity-directory-card .support-contact-symbol,
:root[data-theme="dark"] .activities-page .activity-directory-back-symbol {
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  box-shadow: none;
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .section-kicker,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-kicker,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-header p,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-hero p,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-contact-copy p,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .authority-support-meta,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-search-empty,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .support-apple-note,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-nickname,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-meta,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-bio,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-fact-value,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-link-item span:last-child,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .profile-inline-note,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .account-tagline {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] body:not(.home-page):not(.activities-page) h1,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) h2,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) h3,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .auth-brand-name,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-link-group h3,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-identity-copy strong,
:root[data-theme="dark"] body:not(.home-page):not(.activities-page) .community-modal-title-row h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-blue {
  background: linear-gradient(180deg, rgba(231, 242, 255, 0.9), rgba(219, 236, 255, 0.94));
  color: #1f63d9;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-green {
  background: linear-gradient(180deg, rgba(233, 248, 236, 0.92), rgba(220, 242, 225, 0.96));
  color: #2d8a43;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-orange {
  background: linear-gradient(180deg, rgba(255, 241, 226, 0.94), rgba(255, 234, 210, 0.96));
  color: #d67b14;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-purple {
  background: linear-gradient(180deg, rgba(241, 235, 255, 0.92), rgba(232, 224, 255, 0.96));
  color: #7a59d9;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-neutral {
  background: linear-gradient(180deg, rgba(241, 243, 247, 0.96), rgba(232, 236, 241, 0.98));
  color: #4c5564;
}

:root[data-theme="dark"] .support-page-main .support-contact-media-host {
  background: linear-gradient(180deg, rgba(255, 236, 238, 0.94), rgba(255, 225, 229, 0.98));
  color: #d45069;
}

:root[data-theme="dark"] .support-page-main .support-contact-symbol {
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
}

.activity-detail-main {
  padding-bottom: 96px;
}

.activity-detail-shortcuts-wrap {
  position: relative;
  z-index: 20;
  margin-top: calc(var(--topbar-height) + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid rgba(16, 20, 26, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.activity-detail-shortcuts {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.activity-detail-shortcuts::-webkit-scrollbar {
  display: none;
}

.activity-detail-shortcut {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.activity-detail-shortcut:hover,
.activity-detail-shortcut:focus-visible,
.activity-detail-shortcut.is-active {
  color: var(--ink);
}

.activity-detail-hero {
  padding: 78px 0 20px;
}

.activity-detail-wrap {
  display: grid;
  gap: 12px;
}

.activity-detail-wrap h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.activity-detail-legacy {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.activity-detail-summary {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.activity-detail-content {
  padding: 8px 0 0;
}

.activity-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
}

.activity-detail-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 26, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.activity-detail-panel-head {
  display: grid;
  gap: 4px;
}

.activity-detail-panel-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.activity-detail-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.activity-detail-time-grid div {
  display: grid;
  gap: 5px;
}

.activity-detail-time-grid small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.activity-detail-time-grid strong {
  font-size: 1.02rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.activity-detail-note {
  margin: 0;
  color: #c56a00;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.activity-detail-status-block {
  display: grid;
  gap: 10px;
}

.activity-detail-status-block p,
.activity-detail-countdown-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.activity-detail-countdown-panel {
  justify-items: start;
}

.activity-detail-countdown-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.activity-detail-countdown-unit {
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.04);
}

.activity-detail-countdown-unit strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.activity-detail-countdown-unit span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.activity-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.activity-registration-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.activity-registration-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.activity-registration-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
  font-size: 1.24rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.activity-registration-body {
  display: grid;
  gap: 2px;
}

.activity-registration-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.activity-registration-panel p {
  margin: 8px 0 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.activity-registration-count {
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.activity-registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.launch-activity-shell {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.launch-activity-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
}

.launch-guide-copy,
.launch-form-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.launch-guide-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.launch-guide-list li {
  line-height: 1.6;
}

.launch-meta-strip {
  display: grid;
  gap: 10px;
  align-content: start;
}

.launch-meta-copy {
  color: var(--muted);
  line-height: 1.6;
}

.launch-form {
  display: grid;
  gap: 16px;
}

.launch-field {
  display: grid;
  gap: 8px;
}

.launch-field span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.launch-field input,
.launch-field textarea,
.launch-field select {
  width: 100%;
  border: 1px solid rgba(16, 20, 26, 0.1);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.02);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.launch-field textarea {
  resize: vertical;
  min-height: 124px;
  line-height: 1.65;
}

.launch-field input:focus,
.launch-field textarea:focus,
.launch-field select:focus {
  outline: none;
  border-color: rgba(10, 132, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.launch-form-feedback {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.launch-form-feedback[data-tone="success"] {
  background: rgba(32, 191, 107, 0.12);
  color: #0d8c4a;
}

.launch-form-feedback[data-tone="error"] {
  background: rgba(255, 69, 58, 0.12);
  color: #c2362b;
}

.launch-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.launch-save-note {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.launch-preview-panel {
  display: grid;
  gap: 18px;
}

.launch-preview-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.launch-preview-updated {
  color: var(--muted);
  font-size: 0.95rem;
}

.launch-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.launch-preview-block {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.035);
}

.launch-preview-block small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-preview-block p {
  margin: 0;
  line-height: 1.7;
  white-space: pre-line;
}

.launch-activity-content {
  padding-top: 30px;
}

.launch-page-shell-wide {
  width: min(calc(100% - 44px), 1720px);
}

.launch-page-shell {
  display: grid;
  gap: 30px;
}

.launch-simple-head {
  display: grid;
  gap: 14px;
}

.launch-simple-title {
  display: grid;
  gap: 12px;
}

.launch-floating-brand {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 20, 26, 0.08);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.launch-floating-logo {
  width: 88px;
  height: 88px;
  border-radius: 26px;
}

.launch-floating-copy {
  display: grid;
  gap: 12px;
}

.launch-floating-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.launch-floating-copy .activity-detail-summary {
  max-width: none;
  font-size: 1rem;
}

.launch-simple-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.launch-simple-title-row h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.launch-prompt-panel .activity-detail-panel-head h2,
.launch-feed-head h2,
.launch-composer-shell .activity-detail-panel-head h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.launch-simple-meta {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.launch-simple-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.launch-simple-schedule {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.launch-simple-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.launch-simple-times {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.launch-simple-times strong {
  color: var(--ink);
  font-weight: 600;
}

.launch-prompt-list {
  display: grid;
  gap: 12px;
}

.launch-prompt-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.035);
}

.launch-prompt-item strong {
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.launch-prompt-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.launch-feed-head {
  display: grid;
  gap: 8px;
  padding: 4px 2px 2px;
}

.launch-feed-head h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.launch-feed-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.66;
}

.launch-feed-wrap {
  display: grid;
  gap: 18px;
}

.launch-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launch-feed-empty {
  margin-top: 6px;
}

.launch-feed-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 26, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.launch-feed-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.launch-feed-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.launch-feed-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0a84ff, #0066cc);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.launch-feed-person-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.launch-feed-person-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.launch-feed-person-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.launch-feed-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.launch-feed-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.12);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.launch-feed-badge-role {
  background: rgba(255, 149, 0, 0.12);
  color: #c56a00;
}

.launch-feed-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.launch-feed-updated {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.launch-feed-content {
  display: grid;
  gap: 12px;
}

.launch-feed-section {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.035);
}

.launch-feed-section small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-feed-section p {
  margin: 0;
  line-height: 1.68;
  white-space: pre-line;
}

.launch-composer-shell,
.launch-preview-panel {
  gap: 16px;
}

.launch-preview-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.035);
}

.launch-composer-head {
  display: grid;
  gap: 14px;
}

.launch-composer-toggle {
  width: fit-content;
}

.launch-composer-body {
  display: grid;
  gap: 18px;
}

.launch-composer-shell .launch-field textarea {
  min-height: 112px;
}

.launch-detail-actions {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .activity-detail-grid {
    grid-template-columns: 1fr;
  }

  .launch-activity-grid {
    grid-template-columns: 1fr;
  }

  .launch-feed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .activity-detail-hero {
    padding-top: 60px;
  }

  .activity-detail-wrap h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .activity-detail-time-grid,
  .activity-detail-countdown-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-card-links .button,
  .activity-directory-links .button,
  .activity-detail-actions .button {
    width: 100%;
  }

  .activity-registration-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .activity-registration-actions {
    width: 100%;
    justify-content: stretch;
  }

  .activity-registration-actions .button {
    width: 100%;
  }

  .launch-preview-grid {
    grid-template-columns: 1fr;
  }

  .launch-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-page-shell-wide {
    width: min(calc(100% - 28px), 100%);
  }

  .launch-floating-logo {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .launch-simple-title-row {
    gap: 12px;
  }

  .launch-simple-title-row h1 {
    font-size: clamp(2.1rem, 9.6vw, 3.3rem);
  }

  .launch-feed-card,
  .launch-feed-section,
  .launch-prompt-item {
    border-radius: 22px;
  }
}

:root[data-theme="dark"] .activity-detail-panel {
  background: rgba(22, 22, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .activity-registration-panel {
  background: rgba(22, 22, 24, 0.92);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .activity-registration-symbol {
  background: rgba(255, 255, 255, 0.08);
  color: #8fc0ff;
}

:root[data-theme="dark"] .activity-detail-shortcuts-wrap {
  background: rgba(10, 10, 10, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .activity-detail-shortcut {
  color: rgba(255, 255, 255, 0.56);
}

:root[data-theme="dark"] .activity-detail-shortcut:hover,
:root[data-theme="dark"] .activity-detail-shortcut:focus-visible,
:root[data-theme="dark"] .activity-detail-shortcut.is-active {
  color: #ffffff;
}

:root[data-theme="dark"] .activity-detail-summary,
:root[data-theme="dark"] .activity-detail-time-grid small,
:root[data-theme="dark"] .activity-detail-status-block p,
:root[data-theme="dark"] .activity-detail-countdown-panel p,
:root[data-theme="dark"] .activity-detail-countdown-unit span {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .activity-detail-wrap h1,
:root[data-theme="dark"] .activity-detail-time-grid strong,
:root[data-theme="dark"] .activity-detail-panel-head h2,
:root[data-theme="dark"] .activity-detail-countdown-unit strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] .activity-detail-countdown-unit {
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .launch-field input,
:root[data-theme="dark"] .launch-field textarea,
:root[data-theme="dark"] .launch-field select {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-field input:focus,
:root[data-theme="dark"] .launch-field textarea:focus,
:root[data-theme="dark"] .launch-field select:focus {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .launch-guide-copy,
:root[data-theme="dark"] .launch-form-copy,
:root[data-theme="dark"] .launch-meta-copy,
:root[data-theme="dark"] .launch-save-note,
:root[data-theme="dark"] .launch-preview-updated,
:root[data-theme="dark"] .launch-preview-block small {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .launch-preview-block {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .launch-preview-panel {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .launch-floating-brand,
:root[data-theme="dark"] .launch-feed-card {
  background: rgba(22, 22, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .launch-simple-schedule,
:root[data-theme="dark"] .launch-simple-copy,
:root[data-theme="dark"] .launch-simple-times {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .launch-simple-times strong,
:root[data-theme="dark"] .launch-simple-title-row h1 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-prompt-item,
:root[data-theme="dark"] .launch-feed-section {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .launch-prompt-item p,
:root[data-theme="dark"] .launch-feed-person-copy span,
:root[data-theme="dark"] .launch-feed-updated,
:root[data-theme="dark"] .launch-feed-section small,
:root[data-theme="dark"] .launch-feed-head p {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .launch-feed-title,
:root[data-theme="dark"] .launch-feed-person-copy strong,
:root[data-theme="dark"] .launch-feed-section p,
:root[data-theme="dark"] .launch-floating-copy h1,
:root[data-theme="dark"] .launch-feed-head h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-feed-badge-role {
  background: rgba(255, 159, 10, 0.18);
  color: #ffb340;
}

.launch-activity-page .launch-page-shell-wide {
  width: min(calc(100% - 56px), 1680px);
}

.launch-activity-page .launch-page-shell {
  gap: 24px;
}

.launch-activity-page .launch-simple-head {
  max-width: 940px;
  gap: 10px;
  padding-top: 8px;
}

.launch-activity-page .launch-simple-title {
  gap: 10px;
}

.launch-activity-page .launch-simple-title-row {
  align-items: flex-start;
  gap: 14px;
}

.launch-activity-page .launch-floating-logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.launch-activity-page .launch-simple-title-row h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
}

.launch-activity-page .launch-simple-summary {
  max-width: 760px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
}

.launch-activity-page .launch-simple-meta {
  gap: 8px;
  max-width: 880px;
}

.launch-activity-page .launch-simple-meta-row {
  gap: 8px;
}

.launch-activity-page .launch-simple-schedule,
.launch-activity-page .launch-simple-copy,
.launch-activity-page .launch-simple-times {
  font-size: 0.92rem;
}

.launch-activity-page .launch-feed-wrap {
  gap: 16px;
}

.launch-activity-page .launch-feed-head {
  gap: 6px;
  padding: 0;
}

.launch-activity-page .launch-feed-head p {
  max-width: 820px;
}

.launch-activity-page .launch-feed-grid {
  gap: 16px;
}

.launch-activity-page .launch-feed-card {
  padding: 20px;
  border-radius: 26px;
}

.launch-activity-page .launch-feed-content {
  gap: 10px;
}

.launch-activity-page .launch-feed-section {
  padding: 14px 16px;
  border-radius: 18px;
}

.launch-activity-page .launch-composer-shell {
  margin-top: 4px;
}

.launch-activity-page .launch-composer-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 20px;
  row-gap: 10px;
}

.launch-activity-page .launch-composer-head .activity-detail-panel-head {
  gap: 4px;
}

.launch-activity-page .launch-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.launch-activity-page .launch-composer-toggle {
  justify-self: start;
}

.launch-activity-page .launch-composer-body {
  margin-top: 6px;
}

@media (max-width: 980px) {
  .launch-activity-page .launch-composer-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .launch-activity-page .launch-page-shell-wide {
    width: min(calc(100% - 28px), 100%);
  }

  .launch-activity-page .launch-floating-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .launch-activity-page .launch-simple-title-row h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .launch-activity-page .launch-feed-grid {
    grid-template-columns: 1fr;
  }
}

:root[data-theme="dark"] .launch-activity-page .launch-simple-schedule,
:root[data-theme="dark"] .launch-activity-page .launch-simple-copy,
:root[data-theme="dark"] .launch-activity-page .launch-simple-times {
  color: rgba(245, 245, 247, 0.68);
}

.launch-community-shell {
  padding-top: var(--topbar-height);
  padding-bottom: 0;
}

.launch-community-shell > .wrap {
  width: min(calc(100% - 48px), 1620px);
}

.launch-community-head {
  display: grid;
  gap: 10px;
  padding-top: 30px;
  margin-bottom: 28px;
}

.launch-community-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.launch-community-logo {
  width: 66px;
  height: 66px;
  border-radius: 20px;
}

.launch-community-title-copy {
  display: grid;
  gap: 8px;
}

.launch-community-title-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.launch-community-summary {
  max-width: 720px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.6;
}

.launch-category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.launch-category-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(246, 246, 247, 0.88);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.launch-category-card small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-category-card strong {
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.launch-category-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.52;
}

.launch-feed-wrap-community {
  gap: 18px;
}

.launch-feed-wrap-community .launch-feed-head {
  padding: 0;
}

.launch-composer-shell-bottom {
  margin-top: 28px;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .launch-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .launch-community-shell > .wrap {
    width: min(calc(100% - 28px), 100%);
  }

  .launch-community-head {
    padding-top: 18px;
    margin-bottom: 22px;
  }

  .launch-community-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .launch-community-title-row {
    gap: 12px;
  }

  .launch-community-title-copy h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .launch-category-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .launch-category-card {
    padding: 16px 16px 18px;
    border-radius: 20px;
  }
}

:root[data-theme="dark"] .launch-community-summary {
  color: rgba(245, 245, 247, 0.7);
}

:root[data-theme="dark"] .launch-community-title-copy h1 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-category-card {
  background: rgba(22, 22, 24, 0.92);
  box-shadow: none;
}

:root[data-theme="dark"] .launch-category-card small {
  color: rgba(245, 245, 247, 0.52);
}

:root[data-theme="dark"] .launch-category-card strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-category-card p {
  color: rgba(245, 245, 247, 0.72);
}

.launch-studio-shell {
  padding-top: var(--topbar-height);
  padding-bottom: 0;
}

.launch-studio-shell > .wrap {
  width: min(calc(100% - 48px), 1660px);
}

.launch-studio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-bottom: 20px;
}

.launch-studio-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.launch-studio-copy-compact {
  gap: 8px;
}

.launch-studio-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.launch-studio-logo {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  border-radius: 20px;
  flex: 0 0 66px;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  align-self: flex-start;
}

.launch-studio-title-copy {
  display: grid;
  gap: 8px;
}

.launch-studio-title-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.launch-studio-summary {
  max-width: 780px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.62;
}

.launch-studio-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.launch-studio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.launch-ended-banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.launch-ended-banner-copy {
  display: grid;
  gap: 8px;
  max-width: 700px;
}

.launch-ended-banner-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.launch-ended-banner-copy p,
.launch-submit-strip-ended {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.launch-ended-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.launch-browser {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.launch-browser-head {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.launch-browser-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.launch-studio-logo {
  width: 108px;
  height: 108px;
  min-width: 108px;
  min-height: 108px;
  flex-basis: 108px;
  border-radius: 28px;
}

.launch-browser-title-copy {
  display: grid;
  gap: 8px;
}

.launch-browser-title-copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 3.9vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.launch-browser-summary {
  margin: 0;
  max-width: 620px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.62;
}

.launch-browser-head h2,
.launch-submit-strip-copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.launch-browser-head p,
.launch-submit-strip-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  max-width: 620px;
}

.launch-browser-mobile-actions {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-category-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.launch-category-tabs::-webkit-scrollbar {
  display: none;
}

.launch-search-row {
  display: flex;
  justify-content: flex-start;
}

.launch-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(420px, 100%);
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.045);
}

.launch-search-symbol {
  color: var(--muted);
  font-size: 0.98rem;
}

.launch-search-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.launch-search-field input::placeholder {
  color: var(--muted);
}

.launch-category-tab {
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.045);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.launch-category-tab:hover,
.launch-category-tab:focus-visible {
  background: rgba(15, 23, 42, 0.08);
}

.launch-category-tab.is-active {
  background: #0a84ff;
  color: #ffffff;
}

.launch-wall {
  display: grid;
  gap: 18px;
}

.launch-feed-head-studio {
  padding: 0;
}

.launch-feed-head-studio h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
}

.launch-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.launch-feed-avatar[data-launch-profile-trigger] {
  cursor: pointer;
}

.launch-activity-page .community-modal {
  z-index: 1400;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-card-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-list-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 18px;
  padding: 0 26px 16px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-list-head-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.launch-feed-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.launch-pagination-dot {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.launch-pagination-dot:hover,
.launch-pagination-dot:focus-visible {
  background: rgba(15, 23, 42, 0.1);
}

.launch-pagination-dot.is-active {
  background: #0a84ff;
  color: #ffffff;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact {
  gap: 0;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  transition: background-color 180ms ease;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact:first-child {
  border-top: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact:last-child {
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact:hover,
body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact:focus-visible {
  transform: none;
  box-shadow: none;
  background: rgba(15, 23, 42, 0.02);
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
  padding: 26px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.launch-feed-card-compact {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 300px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.launch-feed-card-compact:hover,
.launch-feed-card-compact:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.12);
}

.idea-feed-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.06);
}

.idea-feed-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.launch-feed-summary {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-tag-primary {
  background: rgba(10, 132, 255, 0.08);
  color: #0a5eff;
  box-shadow: inset 0 0 0 1px rgba(10, 94, 255, 0.55);
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  text-align: center;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-metric {
  display: grid;
  gap: 8px;
  justify-items: center;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-metric strong {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idea-markdown-preview,
.idea-markdown-body,
.launch-manage-item-description {
  color: var(--muted-strong);
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.idea-markdown-preview > *:first-child,
.idea-markdown-body > *:first-child,
.launch-manage-item-description > *:first-child {
  margin-top: 0;
}

.idea-markdown-preview > *:last-child,
.idea-markdown-body > *:last-child,
.launch-manage-item-description > *:last-child {
  margin-bottom: 0;
}

.idea-markdown-preview a,
.idea-markdown-body a,
.launch-manage-item-description a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.idea-markdown-preview code,
.idea-markdown-body code,
.launch-manage-item-description code {
  padding: 0.12em 0.42em;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92em;
}

.idea-markdown-preview strong,
.idea-markdown-body strong,
.launch-manage-item-description strong {
  color: var(--ink);
}

.idea-markdown-body p,
.idea-markdown-body ul,
.idea-markdown-body ol,
.idea-markdown-body blockquote,
.idea-markdown-body h3,
.idea-markdown-body h4,
.idea-markdown-body h5,
.idea-markdown-body h6 {
  margin: 0 0 0.7rem;
}

.idea-markdown-body ul,
.idea-markdown-body ol {
  padding-left: 1.2rem;
}

.idea-markdown-body li + li {
  margin-top: 0.32rem;
}

.idea-markdown-body blockquote {
  padding-left: 0.9rem;
  border-left: 3px solid rgba(15, 23, 42, 0.12);
  color: var(--muted);
}

.idea-markdown-body h3,
.idea-markdown-body h4,
.idea-markdown-body h5,
.idea-markdown-body h6 {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.idea-feed-preview-meta {
  display: grid;
  gap: 6px;
}

.idea-feed-preview-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.idea-feed-preview-label {
  color: var(--ink);
  font-weight: 600;
}

.idea-feed-preview-value {
  color: inherit;
}

.launch-feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.launch-feed-updated-inline {
  margin: 0;
}

.launch-feed-comment-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.launch-feed-profile-link {
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.launch-feed-profile-link:hover,
.launch-feed-profile-link:focus-visible {
  text-decoration: underline;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-hover {
  inset: auto 26px 18px 26px;
}

.launch-feed-hover {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.launch-feed-hover p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-feed-hover .idea-markdown-preview {
  line-height: 1.6;
}

.launch-feed-card-compact:hover .launch-feed-hover,
.launch-feed-card-compact:focus-visible .launch-feed-hover {
  opacity: 1;
  transform: translateY(0);
}

.launch-submit-strip {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.launch-submit-strip-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.launch-submit-strip-copy {
  display: grid;
  gap: 6px;
}

.launch-submit-strip-ended {
  max-width: 620px;
}

.idea-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.idea-image-help {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.idea-image-preview {
  display: grid;
  gap: 12px;
}

.idea-image-preview-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.04);
}

.idea-image-preview-card img {
  width: 100%;
  max-height: 280px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.idea-image-remove {
  justify-self: flex-start;
}

.launch-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: calc(var(--topbar-height) + 28px) 24px 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.launch-sheet {
  width: min(760px, calc(100vw - 40px));
  max-height: min(860px, calc(100vh - var(--topbar-height) - 56px));
  overflow: auto;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.22);
}

.launch-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.launch-sheet-close {
  flex: 0 0 auto;
}

.launch-detail-sheet {
  width: min(920px, calc(100vw - 40px));
  gap: 20px;
}

.launch-manage-sheet {
  width: min(720px, calc(100vw - 40px));
}

.launch-manage-empty {
  margin: 0;
  padding: 22px 0 4px;
  color: var(--muted);
  line-height: 1.6;
}

.launch-manage-empty p {
  margin: 0;
}

.launch-manage-list {
  display: grid;
  gap: 14px;
}

.launch-manage-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.04);
}

.launch-manage-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.launch-manage-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(15, 23, 42, 0.06);
}

.launch-manage-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.launch-manage-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  margin-right: auto;
}

.launch-manage-card-copy strong {
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.launch-manage-card-copy span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.launch-manage-item-description,
.launch-manage-item-clues {
  margin: 0;
  line-height: 1.65;
  color: var(--muted-strong);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-manage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-sheet {
  width: min(1180px, calc(100vw - 40px));
  gap: 22px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-meta {
  display: block;
  padding-bottom: 0;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-main-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-main-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.launch-detail-meta {
  display: grid;
  gap: 18px;
  padding-bottom: 4px;
}

.launch-detail-person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.launch-detail-person-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.launch-detail-person-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.launch-detail-person-copy span,
.launch-detail-updated {
  color: var(--muted);
  line-height: 1.55;
}

.launch-detail-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.launch-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-body {
  grid-template-columns: 1fr;
}

.idea-detail-image {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.04);
}

.idea-detail-image img {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.idea-detail-contact-copy {
  margin-top: 8px;
  color: var(--muted-strong);
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.idea-detail-facts {
  display: grid;
  gap: 12px;
}

.idea-detail-fact-row {
  display: grid;
  gap: 4px;
}

.idea-detail-fact-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.idea-detail-fact-value {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-comments-shell {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body[data-activity-page-key="if-you-ran-the-launch"] .launch-comments-shell {
  padding-top: 8px;
  border-top: 0;
}

.launch-comments-list {
  display: grid;
  gap: 14px;
}

.launch-comments-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.launch-comment-item {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.04);
}

.launch-comment-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.04);
}

.launch-comment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.launch-comment-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.launch-comment-person[role="button"] {
  cursor: pointer;
}

.launch-comment-person[role="button"]:hover .launch-comment-person-copy strong,
.launch-comment-person[role="button"]:focus-visible .launch-comment-person-copy strong {
  color: var(--primary);
}

.launch-comment-person-copy {
  display: grid;
  gap: 3px;
}

.launch-comment-person-copy strong {
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.launch-comment-person-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.launch-comment-body {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.68;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-detail-section {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.launch-detail-section small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.launch-detail-section p,
.launch-detail-section .idea-markdown-body {
  margin: 0;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.showcase-detail-links {
  display: grid;
  gap: 10px;
}

.showcase-detail-link {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.showcase-detail-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase-detail-link strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.showcase-detail-link:hover,
.showcase-detail-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.07);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.showcase-platform-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.showcase-platform-field legend {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.showcase-platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-platform-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.showcase-platform-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.showcase-platform-pill span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.showcase-platform-pill:has(input:checked) {
  background: rgba(10, 132, 255, 0.14);
  box-shadow: inset 0 0 0 2px rgba(10, 132, 255, 0.24);
}

.showcase-platform-pill:has(input:checked) span {
  color: #0a84ff;
}

.showcase-icon-preview .idea-image-preview-card {
  justify-items: start;
}

.showcase-icon-preview .idea-image-preview-card img {
  width: 112px;
  height: 112px;
  max-height: none;
  border-radius: 24px;
  object-fit: contain;
  object-position: center;
  background: rgba(15, 23, 42, 0.04);
}

.showcase-screenshot-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.showcase-screenshot-preview-card img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: rgba(15, 23, 42, 0.04);
}

.showcase-store-card {
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: 18px 20px;
  border-radius: 24px;
  width: min(100%, 520px);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.showcase-store-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.showcase-store-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.showcase-store-card-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(15, 23, 42, 0.04);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.showcase-store-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.showcase-store-card-content {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
}

.showcase-store-card-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.3vw, 1.34rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
}

.showcase-store-card-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.12);
  color: #0a84ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.showcase-store-card-learnmore {
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
}

.showcase-store-card-author-name {
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-store-card-spacer {
  flex: 1 1 auto;
}

.showcase-store-card-shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.035);
  min-height: 180px;
}

.showcase-store-card-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
}

.showcase-store-card-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0a84ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

body[data-activity-page-key="what-got-made"] .launch-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 520px));
  justify-content: flex-start;
  align-items: start;
}

body[data-activity-page-key="what-got-made"] .launch-feed-empty {
  max-width: 520px;
}

.showcase-detail-hero {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.035);
  color: inherit;
}

.showcase-detail-app-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.showcase-detail-app-icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.showcase-detail-app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.showcase-detail-app-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.showcase-detail-app-copy > .launch-detail-person-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.64rem, 2.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.showcase-detail-primary-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.showcase-open-button {
  min-width: 120px;
}

.showcase-detail-stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.showcase-detail-stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 14px;
  text-align: center;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.04);
}

.showcase-detail-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-detail-stat strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.launch-detail-person-subcopy strong {
  font-size: 0.96rem;
}

body[data-activity-page-key="what-got-made"] .launch-detail-person .launch-feed-avatar {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.showcase-detail-gallery-shell {
  margin-top: 2px;
}

.showcase-detail-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.showcase-detail-shot {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.035);
  scroll-snap-align: start;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.showcase-detail-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet {
  width: min(1120px, calc(100vw - 40px));
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.14);
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-section,
body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comment-item,
body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comment-form,
body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link,
body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-shot {
  background: rgba(15, 23, 42, 0.035);
  box-shadow: none;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comments-shell {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  margin-top: 4px;
  padding-top: 20px;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-body {
  gap: 22px;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-section {
  gap: 10px;
  padding: 24px;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link {
  padding: 14px 16px;
  border-radius: 18px;
}

body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link:hover,
body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.055);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet {
  background: rgba(18, 18, 20, 0.98);
  color: #f5f5f7;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-hero,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-section,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-comment-item,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-comment-form,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-link,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-shot,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-stat {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-app-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-shot img {
  background: rgba(12, 12, 14, 0.94);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .activity-detail-panel-head h2,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-person-copy strong,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-app-copy > .launch-detail-person-copy strong,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-section p,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .idea-markdown-body,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comment-person-copy strong,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link strong,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-stat strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-person-copy span,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-section small,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .idea-detail-fact-label,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comment-person-copy span,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comment-body,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-detail-updated,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .showcase-detail-link span,
:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .showcase-detail-stat span {
  color: rgba(245, 245, 247, 0.7);
}

:root[data-theme="dark"] body[data-activity-page-key="what-got-made"] .launch-detail-sheet .launch-comments-shell {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.launch-detail-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.sheet-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .launch-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .launch-studio-head,
  .launch-ended-banner,
  .launch-submit-strip,
  .launch-detail-meta {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .launch-sheet {
    width: min(100vw - 24px, 760px);
    max-height: calc(100vh - var(--topbar-height) - 28px);
    padding: 20px;
    border-radius: 26px;
  }

  .launch-submit-strip-actions {
    justify-content: flex-start;
  }

  .launch-ended-banner-actions {
    justify-content: flex-start;
  }

  .launch-detail-body {
    grid-template-columns: 1fr;
  }

  .idea-field-grid {
    grid-template-columns: 1fr;
  }

  .launch-detail-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .launch-studio-shell > .wrap {
    width: min(calc(100% - 28px), 100%);
  }

  .launch-studio-head {
    padding-top: 18px;
    margin-bottom: 18px;
  }

  .launch-studio-logo {
    width: 108px;
    height: 108px;
    min-width: 108px;
    min-height: 108px;
    flex-basis: 108px;
    border-radius: 28px;
  }

  .launch-studio-title-row {
    gap: 12px;
  }

  .launch-studio-title-copy h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .launch-browser {
    gap: 16px;
    margin-bottom: 24px;
  }

  .launch-browser-title-row {
    gap: 12px;
  }

  .launch-browser-title-copy h1 {
    font-size: clamp(1.9rem, 9.4vw, 3rem);
  }

  .launch-browser-summary {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .launch-studio-actions {
    display: none;
  }

  .launch-browser-mobile-actions {
    display: flex;
    margin-top: 4px;
  }

  .launch-browser-mobile-actions .button {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .launch-category-tabs {
    padding-bottom: 4px;
  }

  .launch-card-grid {
    grid-template-columns: 1fr;
  }

  .launch-feed-hover {
    inset: auto 12px 12px 12px;
    width: auto;
  }

  .launch-sheet-backdrop {
    padding: calc(var(--topbar-height) + 12px) 12px 12px;
  }

  .launch-sheet {
    padding: 18px;
    border-radius: 22px;
  }
}

:root[data-theme="dark"] .launch-studio-summary,
:root[data-theme="dark"] .launch-browser-head p,
:root[data-theme="dark"] .launch-browser-summary,
:root[data-theme="dark"] .launch-submit-strip-copy p,
:root[data-theme="dark"] .launch-ended-banner-copy p,
:root[data-theme="dark"] .launch-submit-strip-ended,
:root[data-theme="dark"] .launch-detail-person-copy span,
:root[data-theme="dark"] .launch-detail-updated,
:root[data-theme="dark"] .launch-detail-section small {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] .launch-studio-title-copy h1,
:root[data-theme="dark"] .launch-browser-title-copy h1,
:root[data-theme="dark"] .launch-browser-head h2,
:root[data-theme="dark"] .launch-submit-strip-copy h2,
:root[data-theme="dark"] .launch-detail-person-copy strong,
:root[data-theme="dark"] .launch-detail-section p,
:root[data-theme="dark"] .launch-sheet .activity-detail-panel-head h2 {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-category-tab {
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-search-field {
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .launch-search-symbol,
:root[data-theme="dark"] .launch-search-field input::placeholder {
  color: rgba(245, 245, 247, 0.56);
}

:root[data-theme="dark"] .launch-search-field input {
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-category-tab:hover,
:root[data-theme="dark"] .launch-category-tab:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .launch-category-tab.is-active {
  background: #0a84ff;
  color: #ffffff;
}

:root[data-theme="dark"] .launch-pagination-dot {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
}

:root[data-theme="dark"] .launch-pagination-dot:hover,
:root[data-theme="dark"] .launch-pagination-dot:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .launch-pagination-dot.is-active {
  background: #0a84ff;
  color: #ffffff;
}

:root[data-theme="dark"] .launch-feed-card-compact {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .launch-feed-summary,
:root[data-theme="dark"] .launch-feed-profile-link,
:root[data-theme="dark"] .launch-feed-comment-count {
  color: rgba(245, 245, 247, 0.76);
}

:root[data-theme="dark"] .launch-sheet {
  background: rgba(18, 18, 20, 0.94);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
}

:root[data-theme="dark"] .launch-submit-strip {
  border-top-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .launch-ended-banner {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body[data-activity-page-key="if-you-ran-the-launch"] .launch-card-grid {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .launch-detail-section,
:root[data-theme="dark"] .launch-preview-block,
:root[data-theme="dark"] .launch-manage-card,
:root[data-theme="dark"] .launch-comment-item,
:root[data-theme="dark"] .launch-comment-form {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .idea-feed-image,
:root[data-theme="dark"] .idea-detail-image,
:root[data-theme="dark"] .idea-image-preview-card {
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .idea-markdown-preview code,
:root[data-theme="dark"] .idea-markdown-body code,
:root[data-theme="dark"] .launch-manage-item-description code {
  background: rgba(255, 255, 255, 0.12);
  color: #f5f7fb;
}

:root[data-theme="dark"] .idea-markdown-body blockquote {
  border-left-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

:root[data-theme="dark"] .launch-comments-shell {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  .home-page.is-home-dashboard .home-dashboard {
    padding: calc(var(--topbar-height) + 22px) 0 calc(34px + env(safe-area-inset-bottom, 0px));
  }

  .home-page.is-home-dashboard .home-dashboard-inner {
    gap: 18px;
  }

  .home-page.is-home-dashboard .home-dashboard-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page.is-home-dashboard .home-dashboard-header-copy {
    gap: 0;
  }

  .home-page.is-home-dashboard .home-dashboard-title-row {
    gap: 12px;
    margin-top: 0;
  }

  .home-page.is-home-dashboard .home-dashboard-title-logo {
    width: 48px;
    height: 48px;
  }

  .home-page.is-home-dashboard .home-dashboard-header-copy h1 {
    font-size: clamp(2.15rem, 8vw, 3.15rem);
    line-height: 0.96;
  }

  .home-page.is-home-dashboard .home-dashboard-greeting {
    font-size: 1.1rem;
  }

  .home-page.is-home-dashboard .home-dashboard-header-copy p {
    margin-top: 8px;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .home-page.is-home-dashboard .home-dashboard-header-links {
    margin-top: 12px;
    gap: 8px;
  }

  .home-page.is-home-dashboard .home-dashboard-header-links .button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .home-page.is-home-dashboard .home-dashboard-header-meta {
    justify-items: start;
    gap: 8px;
  }

  .home-page.is-home-dashboard .home-dashboard-date-card {
    width: 96px;
    border-radius: 18px;
  }

  .home-page.is-home-dashboard .home-dashboard-date-card-day {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .home-page.is-home-dashboard .home-dashboard-status-pill-main {
    width: fit-content;
    max-width: none;
  }

  .home-page.is-home-dashboard .home-dashboard-status-tags {
    max-width: none;
    justify-content: flex-start;
  }

  .home-page.is-home-dashboard .home-dashboard-live-copy {
    width: auto;
    max-width: 28rem;
    text-align: left;
    font-size: 0.74rem;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown {
    gap: 10px;
    padding-top: 14px;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown h2 {
    font-size: clamp(1.32rem, 5.5vw, 1.75rem);
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown-unit {
    padding: 14px 12px 12px;
    border-radius: 20px;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown-unit strong {
    font-size: clamp(4.4rem, 18vw, 6.4rem);
  }

  .home-page.is-home-dashboard .home-dashboard-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-column,
  .home-page.is-home-dashboard .home-dashboard-panel {
    gap: 14px;
    padding-top: 14px;
  }

  .home-page.is-home-dashboard .home-dashboard-section-head h2,
  .home-page.is-home-dashboard .home-dashboard-panel-head h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .home-page.is-home-dashboard .home-dashboard-panel-head p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-grid {
    max-height: none;
    gap: 10px;
    overflow: visible;
    padding: 2px 0 0;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-card {
    min-height: 0;
    gap: 8px;
    padding: 0 16px 16px;
    border-radius: 24px;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-state {
    width: calc(100% + 32px);
    min-height: 30px;
    margin: 0 -16px;
    padding: 7px 16px;
    font-size: 0.68rem;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-card strong {
    font-size: 1.36rem;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-date,
  .home-page.is-home-dashboard .home-dashboard-phase-blurb {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-note {
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-list {
    gap: 12px;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-card {
    gap: 10px;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-card h3 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .home-page.is-home-dashboard .home-dashboard-activity-schedule,
  .home-page.is-home-dashboard .home-dashboard-activity-legacy,
  .home-page.is-home-dashboard .home-dashboard-activity-status,
  .home-page.is-home-dashboard .home-dashboard-activity-card p {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-meta {
    gap: 8px;
    margin-top: 4px;
    padding-top: 8px;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-meta-row {
    align-items: flex-start;
    gap: 10px;
  }

  .home-page.is-home-dashboard .home-dashboard-activity-meta-row svg {
    width: 24px;
    height: 24px;
  }

  .home-page.is-home-dashboard .home-dashboard-actions-bottom {
    margin-top: 18px;
  }

  .home-page.is-home-dashboard .home-dashboard-actions-bottom .button {
    width: 100%;
  }

  .activities-page .activities-formal-main {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .activities-page .activities-hero {
    padding-top: 18px;
  }

  .activities-page .support-hero-inner {
    gap: 12px;
  }

  .activities-page .activities-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    line-height: 0.96;
  }

  .activities-page .activities-live-shell {
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
  }

  .activities-page .activities-live-head {
    gap: 6px;
  }

  .activities-page .activities-live-phase-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .activities-page .activities-live-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .activities-page .activities-live-card {
    padding: 16px;
    border-radius: 22px;
  }

  .activities-page .activities-timeline-shell,
  .activities-page .activities-timeline-band {
    padding-top: 6px;
  }

  .activities-page .activities-timeline-scroll {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .activities-page .activities-timeline-row {
    gap: 12px;
    padding-inline: 0;
    align-items: stretch;
  }

  .activities-page .activities-timeline-step {
    min-width: 228px;
    min-height: 210px;
    padding: 16px 16px 18px;
    border-radius: 22px;
  }

  .activities-page .activities-search .support-search-inner {
    gap: 12px;
  }

  .activities-page .activities-overview-copy {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .activities-page .support-directory-list {
    gap: 14px;
  }

  .activities-page .activity-directory-card {
    perspective: none;
  }

  .activities-page .activity-directory-scene {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .activities-page .activity-directory-sheet {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    border-radius: 24px;
    transform: none !important;
    transition: none;
    opacity: 1;
    pointer-events: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .activities-page .activity-directory-content {
    gap: 16px;
  }

  .activities-page .activity-directory-sheet .support-contact-media {
    min-height: 168px;
    padding: 20px 18px;
  }

  .activities-page .activity-directory-meta {
    margin-top: 16px;
    gap: 10px;
  }

  .activities-page .activity-directory-sheet.front {
    display: grid;
  }

  .activities-page .activity-directory-sheet.back {
    display: none;
  }

  .activities-page .activity-directory-card.is-flipped .activity-directory-sheet.front {
    display: none;
  }

  .activities-page .activity-directory-card.is-flipped .activity-directory-sheet.back {
    display: grid;
  }

  .activities-page .activity-directory-meta .button,
  .activities-page .activity-directory-links .button {
    width: 100%;
  }

  .activity-detail-page .activity-detail-main {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .activity-detail-page .activity-detail-shortcuts-wrap {
    margin-top: calc(var(--topbar-height) + env(safe-area-inset-top, 0px));
  }

  .activity-detail-page .activity-detail-shortcuts {
    min-height: 46px;
    gap: 14px;
  }

  .activity-detail-page .activity-detail-hero {
    padding: 56px 0 18px;
  }

  .activity-detail-page .activity-detail-wrap {
    gap: 10px;
  }

  .activity-detail-page .activity-detail-wrap h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .activity-detail-page .activity-detail-summary {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .activity-detail-page .activity-detail-content {
    padding-top: 2px;
  }

  .activity-detail-page .activity-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activity-detail-page .activity-detail-panel,
  .activity-detail-page .activity-registration-panel {
    gap: 16px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .activity-detail-page .activity-detail-panel-head h2,
  .activity-detail-page .activity-registration-panel h2 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .activity-detail-page .activity-detail-time-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .activity-detail-page .activity-detail-time-grid strong {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .activity-detail-page .activity-detail-status-block p,
  .activity-detail-page .activity-detail-countdown-panel p,
  .activity-detail-page .activity-registration-panel p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .activity-detail-page .activity-detail-countdown-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .activity-detail-page .activity-detail-countdown-unit {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .activity-detail-page .activity-detail-countdown-unit strong {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .activity-detail-page .activity-registration-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .activity-detail-page .activity-registration-actions {
    width: 100%;
    justify-content: stretch;
  }

  .activity-detail-page .activity-registration-actions .button,
  .activity-detail-page .activity-detail-actions .button {
    width: 100%;
  }

  .launch-activity-page .launch-studio-shell > .wrap {
    width: min(calc(100% - 24px), 100%);
  }

  .launch-activity-page .launch-studio-head {
    gap: 16px;
    padding-top: 18px;
    margin-bottom: 16px;
  }

  .launch-activity-page .launch-studio-actions {
    width: 100%;
    gap: 10px;
  }

  .launch-activity-page .launch-studio-actions .button {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .launch-activity-page .launch-browser {
    gap: 14px;
    margin-bottom: 22px;
  }

  .launch-activity-page .launch-browser-title-row {
    gap: 12px;
  }

  .launch-activity-page .launch-studio-logo {
    width: 108px;
    height: 108px;
    min-width: 108px;
    min-height: 108px;
    flex-basis: 108px;
    border-radius: 28px;
  }

  .launch-activity-page .launch-browser-title-copy h1 {
    font-size: clamp(2rem, 9.6vw, 3rem);
  }

  .launch-activity-page .launch-browser-summary {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .launch-activity-page .launch-category-tabs {
    gap: 8px;
    padding-bottom: 4px;
  }

  .launch-activity-page .launch-category-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .launch-activity-page .launch-search-row {
    width: 100%;
  }

  .launch-activity-page .launch-search-field {
    width: 100%;
    min-height: 44px;
  }

  body[data-activity-page-key="if-you-ran-the-launch"] .launch-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-card-compact {
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }

  body[data-activity-page-key="if-you-ran-the-launch"] .launch-list-head,
  body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-row,
  body[data-activity-page-key="if-you-ran-the-launch"] .launch-detail-main-head {
    grid-template-columns: 1fr;
  }

  body[data-activity-page-key="if-you-ran-the-launch"] .launch-list-head-metrics,
  body[data-activity-page-key="if-you-ran-the-launch"] .launch-feed-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-activity-page-key="what-got-made"] .showcase-store-card {
    width: 100%;
  }

  .launch-activity-page .launch-feed-card-head {
    gap: 12px;
  }

  .launch-activity-page .launch-feed-avatar {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .launch-activity-page .launch-feed-title {
    font-size: 1.36rem;
  }

  .launch-activity-page .launch-feed-summary {
    -webkit-line-clamp: 5;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .launch-activity-page .launch-feed-hover {
    display: none;
  }

  .launch-activity-page .launch-submit-strip {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .launch-activity-page .launch-submit-strip-actions {
    justify-content: stretch;
  }

  .launch-activity-page .launch-submit-strip-actions .button {
    width: 100%;
  }

  .launch-activity-page .launch-sheet {
    width: min(100vw - 20px, 760px);
    max-height: calc(var(--app-dvh) - var(--topbar-height) - 20px);
    padding: 18px;
    border-radius: 22px;
  }

  .launch-activity-page .launch-sheet-head {
    gap: 12px;
  }

  .launch-activity-page .launch-detail-meta,
  .launch-activity-page .launch-detail-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-page.is-home-dashboard .home-dashboard-header-links .button,
  .launch-activity-page .launch-studio-actions .button {
    width: 100%;
    flex-basis: 100%;
  }

  .home-page.is-home-dashboard .home-dashboard-time-pill {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .home-page.is-home-dashboard .home-dashboard-status-pill {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .home-page.is-home-dashboard .home-dashboard-phase-countdown-unit strong {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }
}

@media (max-width: 680px) {
  .activities-page .support-page-main.activities-formal-main {
    padding-top: calc(var(--topbar-height) + 22px);
  }

  .activities-page .activities-hero {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .activities-page .support-hero-inner {
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .activities-page .activities-hero-mark {
    width: 78px;
    height: 78px;
  }

  .activities-page .activities-hero-mark img {
    width: 42px;
    height: 42px;
  }

  .activities-page .support-eyebrow {
    font-size: 0.78rem;
  }

  .activities-page .activities-hero h1 {
    display: block;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .activities-page .support-title-prefix {
    display: inline;
  }

  .activities-page .activities-hero p {
    display: block;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .activities-page .activities-hero-accent {
    justify-content: center;
  }
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .topbar,
:root[data-theme="dark"] body.activities-page .topbar,
:root[data-theme="dark"] body.activity-detail-page .topbar,
:root[data-theme="dark"] body.home-page.is-home-dashboard .topbar.is-solid,
:root[data-theme="dark"] body.activities-page .topbar.is-solid,
:root[data-theme="dark"] body.activity-detail-page .topbar.is-solid {
  background: rgba(9, 9, 10, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .topbar-shell,
:root[data-theme="dark"] body.activities-page .topbar-shell,
:root[data-theme="dark"] body.activity-detail-page .topbar-shell {
  background: transparent;
}

:root[data-theme="dark"] body.home-page.is-home-dashboard {
  background: #000000;
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-header-meta {
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-date-card {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-date-card-month {
  background: #ff453a;
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-column,
:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-panel,
:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-countdown {
  border-top-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-card,
:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-activity-card {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-meta-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-countdown-unit {
  background: rgba(18, 18, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-countdown-unit strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-dot {
  background: rgba(255, 255, 255, 0.14);
}

:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-dot.is-selected,
:root[data-theme="dark"] body.home-page.is-home-dashboard .home-dashboard-phase-card.is-selected {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] body.activities-page {
  background: #000000;
}

:root[data-theme="dark"] body.activities-page .activities-formal-main {
  background: #000000;
}

:root[data-theme="dark"] body.activities-page .activities-live-shell,
:root[data-theme="dark"] body.activities-page .activities-timeline-shell,
:root[data-theme="dark"] body.activities-page .activities-timeline-step,
:root[data-theme="dark"] body.activities-page .activities-live-card,
:root[data-theme="dark"] body.activities-page .activities-search .support-search-box,
:root[data-theme="dark"] body.activities-page .activity-directory-sheet,
:root[data-theme="dark"] body.activities-page .activity-directory-status {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] body.activities-page .activities-timeline-band,
:root[data-theme="dark"] body.activities-page .activities-hero,
:root[data-theme="dark"] body.activities-page .activities-directory,
:root[data-theme="dark"] body.activities-page .activities-footer-shell {
  background: transparent;
}

:root[data-theme="dark"] body.activities-page .activities-timeline-row::before,
:root[data-theme="dark"] body.activities-page .activities-timeline-row::after {
  background: rgba(255, 255, 255, 0.22);
}

:root[data-theme="dark"] body.activities-page .activities-timeline-step::before {
  background: rgba(255, 255, 255, 0.9);
}

:root[data-theme="dark"] body.activities-page .activities-overview-copy,
:root[data-theme="dark"] body.activities-page .activities-live-head p,
:root[data-theme="dark"] body.activities-page .activities-live-card-copy,
:root[data-theme="dark"] body.activities-page .activities-timeline-time,
:root[data-theme="dark"] body.activities-page .activities-timeline-step p,
:root[data-theme="dark"] body.activities-page .activity-directory-block p,
:root[data-theme="dark"] body.activities-page .activity-directory-status p {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] body.activities-page .activities-live-card-title,
:root[data-theme="dark"] body.activities-page .activities-live-card-label,
:root[data-theme="dark"] body.activities-page .activities-timeline-step strong,
:root[data-theme="dark"] body.activities-page .activity-directory-sheet h2,
:root[data-theme="dark"] body.activities-page .activity-directory-block strong,
:root[data-theme="dark"] body.activities-page .activity-directory-status strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] body.activities-page .activity-directory-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
}

:root[data-theme="dark"] body.activity-detail-page {
  background: #000000;
}

:root[data-theme="dark"] body.activity-detail-page .activity-detail-shortcuts-wrap {
  background: rgba(9, 9, 10, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] body.activity-detail-page .activity-detail-panel,
:root[data-theme="dark"] body.activity-detail-page .activity-registration-panel,
:root[data-theme="dark"] body.activity-detail-page .launch-feed-card-compact,
:root[data-theme="dark"] body.activity-detail-page .launch-sheet,
:root[data-theme="dark"] body.activity-detail-page .launch-manage-card,
:root[data-theme="dark"] body.activity-detail-page .launch-comment-item,
:root[data-theme="dark"] body.activity-detail-page .launch-comment-form,
:root[data-theme="dark"] body.activity-detail-page .launch-detail-section,
:root[data-theme="dark"] body.activity-detail-page .launch-feed-hover {
  background: rgba(18, 18, 20, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] body.activity-detail-page .launch-search-field,
:root[data-theme="dark"] body.activity-detail-page .launch-category-tab,
:root[data-theme="dark"] body.activity-detail-page .launch-pagination-dot,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-countdown-unit {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] body.activity-detail-page .launch-category-tab:hover,
:root[data-theme="dark"] body.activity-detail-page .launch-pagination-dot:hover,
:root[data-theme="dark"] body.activity-detail-page .launch-pagination-dot:focus-visible,
:root[data-theme="dark"] body.activity-detail-page .launch-category-tab:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] body.activity-detail-page .launch-search-field input,
:root[data-theme="dark"] body.activity-detail-page .launch-search-symbol,
:root[data-theme="dark"] body.activity-detail-page .launch-search-field input::placeholder,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-summary,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-time-grid small,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-status-block p,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-countdown-panel p,
:root[data-theme="dark"] body.activity-detail-page .activity-registration-panel p,
:root[data-theme="dark"] body.activity-detail-page .launch-browser-summary,
:root[data-theme="dark"] body.activity-detail-page .launch-submit-strip-copy p,
:root[data-theme="dark"] body.activity-detail-page .launch-feed-summary,
:root[data-theme="dark"] body.activity-detail-page .launch-comment-person-copy span,
:root[data-theme="dark"] body.activity-detail-page .launch-comment-body,
:root[data-theme="dark"] body.activity-detail-page .launch-detail-person-copy span,
:root[data-theme="dark"] body.activity-detail-page .launch-detail-section small {
  color: rgba(245, 245, 247, 0.68);
}

:root[data-theme="dark"] body.activity-detail-page .activity-detail-wrap h1,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-panel-head h2,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-time-grid strong,
:root[data-theme="dark"] body.activity-detail-page .activity-detail-countdown-unit strong,
:root[data-theme="dark"] body.activity-detail-page .activity-registration-panel h2,
:root[data-theme="dark"] body.activity-detail-page .launch-browser-title-copy h1,
:root[data-theme="dark"] body.activity-detail-page .launch-detail-section p,
:root[data-theme="dark"] body.activity-detail-page .launch-comment-person-copy strong,
:root[data-theme="dark"] body.activity-detail-page .launch-detail-person-copy strong {
  color: #f5f5f7;
}

:root[data-theme="dark"] body.activity-detail-page .showcase-detail-link {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] body.activity-detail-page .showcase-detail-link span {
  color: rgba(245, 245, 247, 0.62);
}

:root[data-theme="dark"] body.activity-detail-page .showcase-detail-link:hover,
:root[data-theme="dark"] body.activity-detail-page .showcase-detail-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body.activity-detail-page .activity-registration-symbol {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
}

.authority-confirm-card {
  max-width: min(100%, 560px);
}

.authority-confirm-body {
  gap: 18px;
}

.authority-confirm-actions {
  justify-content: flex-end;
}

.authority-delete-button {
  color: var(--danger, #c73b2f);
}

@media (max-width: 900px) {
  .home-signal-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-signal-today-card,
  .home-path-card,
  .home-recent-signal-card {
    padding: 22px 20px 22px;
    border-radius: 26px;
  }

  .home-signal-head h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .home-signal-today-list {
    grid-template-columns: 1fr;
  }
}
