:root {
  color-scheme: dark;
  --ink: #09080d;
  --ink-soft: #121018;
  --paper: #f1efe8;
  --paper-soft: #e6e2d9;
  --white: #fbfaff;
  --muted: #9d98aa;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(9, 8, 13, 0.18);
  --violet: #8c5cff;
  --red: #e4564a;
  --green: #51d98b;
  --amber: #f0ad4e;
  --max: 1540px;
  --gutter: clamp(22px, 4.4vw, 76px);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(145deg, #07070a 0%, #0b0911 48%, #08090d 100%);
}

.ambient__violet,
.ambient__red {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .62;
  transition: transform 2.4s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.ambient__violet {
  width: 58vw;
  height: 58vw;
  min-width: 560px;
  min-height: 560px;
  top: -38vw;
  right: -10vw;
  background: rgba(103, 69, 206, .46);
}

.ambient__red {
  width: 42vw;
  height: 42vw;
  min-width: 460px;
  min-height: 460px;
  left: -4vw;
  bottom: -32vw;
  background: rgba(150, 47, 54, .3);
  filter: blur(110px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand img {
  border-radius: 11px;
}

.brand i {
  width: 1px;
  height: 16px;
  background: currentColor;
  opacity: .35;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.auth-shell,
.loading-view {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 44px var(--gutter);
}

.auth-panel {
  width: min(720px, 100%);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 36px;
  background: linear-gradient(140deg, rgba(42, 36, 58, .72), rgba(18, 15, 27, .52));
  box-shadow: 0 40px 120px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .09);
  backdrop-filter: blur(28px) saturate(130%);
  animation: auth-in .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes auth-in {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.brand--auth {
  margin-bottom: clamp(48px, 9vw, 92px);
  font-size: 18px;
}

.eyebrow,
.section-index {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.auth-panel h1 {
  margin: 18px 0 22px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .94;
}

.auth-copy {
  max-width: 500px;
  margin: 0 0 34px;
  color: #c3bdcb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

.primary-button {
  display: flex;
  width: min(420px, 100%);
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  min-height: 58px;
  padding: 10px 17px;
  border-radius: 16px;
  background: var(--white);
  color: #111015;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 21px 52px rgba(0, 0, 0, .34);
}

.primary-button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.primary-button svg {
  width: 25px;
  height: 25px;
}

.primary-button span {
  margin-left: auto;
}

.access-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #918b9b;
  font-size: 12px;
}

.access-note span,
.status-live i,
.runtime-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(81, 217, 139, .09), 0 0 16px rgba(81, 217, 139, .55);
}

.auth-error {
  margin: 18px 0 0;
  color: #ff9c91;
  font-size: 13px;
  line-height: 1.5;
}

.auth-coordinate {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  margin: 0;
  color: rgba(255, 255, 255, .32);
  font-size: 9px;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.loading-view {
  align-content: center;
  gap: 22px;
}

.loading-view img {
  border-radius: 16px;
  animation: breathe 1.6s ease-in-out infinite;
}

.loading-view p {
  margin: 0;
  color: #c0bac7;
  font-size: 13px;
  letter-spacing: .04em;
}

.loading-line {
  width: 220px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.loading-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--white);
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes breathe {
  50% { transform: scale(1.07); filter: drop-shadow(0 0 18px rgba(137, 85, 255, .7)); }
}

@keyframes loading {
  from { transform: translateX(-120%); }
  to { transform: translateX(340%); }
}

.dashboard {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px 12px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 20px;
  background: rgba(26, 22, 35, .72);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .18), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(22px) saturate(130%);
}

.topbar nav {
  display: flex;
  gap: 8px;
  justify-self: end;
}

.topbar .brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.topbar nav a {
  padding: 10px 15px;
  border-radius: 12px;
  color: #aaa4b3;
  font-size: 12px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.topbar nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: white;
}

.account {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button,
.account-button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.icon-button {
  width: 40px;
  color: #aaa4b3;
  font-size: 19px;
}

.icon-button.is-spinning {
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.account-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 5px;
}

.account-button img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #2c2832;
  object-fit: cover;
}

.account-button span {
  max-width: 120px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-button b {
  width: 7px;
  height: 7px;
  margin: -3px 2px 0 3px;
  border-right: 1.5px solid #918b9b;
  border-bottom: 1.5px solid #918b9b;
  transform: rotate(45deg);
  transform-origin: center;
  transition: margin .2s ease, transform .2s ease;
}

.account-button[aria-expanded="true"] b {
  margin-top: 3px;
  transform: rotate(225deg);
}

.account-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: 250px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: #1b1820;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .4);
}

.account-menu p {
  margin: 5px 6px 12px;
  overflow: hidden;
  color: #9b95a2;
  font-size: 11px;
  text-overflow: ellipsis;
}

.account-menu button {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
}

.section-shell {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(92px, 11vw, 176px) var(--gutter);
}

.overview {
  display: grid;
  height: 100svh;
  min-height: min(620px, 100svh);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(24px, 4vh, 46px) 40px;
  padding-top: clamp(102px, 14vh, 126px);
  padding-bottom: clamp(28px, 5vh, 48px);
}

.overview > *:not(.overview__visual) {
  position: relative;
  z-index: 1;
}

.overview__visual {
  position: relative;
  z-index: 0;
  display: grid;
  width: clamp(140px, 12vw, 180px);
  aspect-ratio: 1;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(22px, 22px, 0) scale(.88) rotate(6deg);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.overview__visual.reveal {
  opacity: 0;
  transform: translate3d(22px, 22px, 0) scale(.88) rotate(6deg);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.overview__visual::before {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 69, 75, .18) 0, rgba(118, 69, 218, .1) 42%, transparent 70%);
  content: "";
  filter: blur(12px);
}

.overview__visual::after {
  position: absolute;
  inset: 1%;
  border: 1px solid rgba(255, 255, 255, .11);
  border-right-color: rgba(173, 134, 255, .45);
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  animation: hero-orbit 18s linear infinite;
}

.overview__visual.reveal.is-visible {
  opacity: .88;
  transform: none;
}

.overview__mark {
  width: 57%;
  height: auto;
  filter: drop-shadow(0 26px 58px rgba(226, 58, 66, .24));
  animation: hero-float 6s ease-in-out 1.1s infinite;
}

@keyframes hero-orbit {
  to { transform: rotate(360deg); }
}

@keyframes hero-float {
  50% { transform: translate3d(0, -8px, 0) rotate(-2deg); }
}

@keyframes hero-title-in {
  from { opacity: 0; filter: blur(7px); transform: translateY(24px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

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

.overview__title.reveal.is-visible h1 {
  animation: hero-title-in .9s .08s cubic-bezier(.16, 1, .3, 1) both;
}

.metrics.reveal.is-visible .metric {
  animation: metric-in .6s cubic-bezier(.16, 1, .3, 1) both;
}

.metrics.reveal.is-visible .metric:nth-child(2) { animation-delay: .06s; }
.metrics.reveal.is-visible .metric:nth-child(3) { animation-delay: .12s; }
.metrics.reveal.is-visible .metric:nth-child(4) { animation-delay: .18s; }

.overview__title {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.overview__title h1 {
  margin: 16px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(72px, min(12.5vw, 17vh), 188px);
  font-weight: 540;
  letter-spacing: -.085em;
  line-height: .76;
}

.overview__title h1 em {
  color: rgba(255, 255, 255, .16);
  font-style: normal;
  font-weight: 430;
}

.overview__statement {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 6px;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8b1c1;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.overview__statement p {
  margin: 18px 0 5px;
  color: #aaa3b0;
  font-size: 13px;
}

.overview__statement strong {
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.metrics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: clamp(92px, 15vh, 116px);
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }

.metric strong {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 450;
  letter-spacing: -.07em;
  line-height: .95;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: #88818f;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: calc(var(--gutter) + 4px);
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .35);
  font-size: 8px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,.8), transparent);
}

.section-shell--light {
  max-width: none;
  background: var(--paper);
  color: var(--ink);
}

.section-shell--light > * {
  width: min(calc(100% - (var(--gutter) * 2)), calc(var(--max) - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.attention {
  display: grid;
  grid-template-columns: 150px minmax(280px, .72fr) minmax(380px, 1.28fr);
  gap: 40px;
}

.attention .section-index,
.section-shell--light .section-index {
  color: rgba(9, 8, 13, .45);
}

.attention h2,
.section-heading h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 540;
  letter-spacing: -.075em;
  line-height: .9;
}

.section-intro,
.section-heading > p {
  max-width: 590px;
  margin: 26px 0 0;
  color: #77717c;
  font-size: 16px;
  line-height: 1.6;
}

.attention-list {
  border-top: 1px solid var(--line-dark);
}

.attention-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.attention-item > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(9, 8, 13, .16);
  border-radius: 50%;
  color: #8e651f;
  font-size: 11px;
}

.attention-item strong {
  display: block;
  font-size: 14px;
}

.attention-item p {
  margin: 6px 0 0;
  color: #736e76;
  font-size: 13px;
  line-height: 1.45;
}

.attention-item a {
  color: #5d5665;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(280px, .5fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(54px, 8vw, 110px);
}

.section-heading > p {
  align-self: end;
  margin: 0;
  color: #8f8996;
  font-size: 14px;
}

.section-shell--light .section-heading > p {
  color: #6f6973;
}

.portfolio-tools {
  position: sticky;
  z-index: 8;
  top: 92px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(19, 16, 25, .84);
  backdrop-filter: blur(20px);
}

.search-box {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 0 11px;
}

.search-box span {
  color: #797280;
  font-size: 18px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.search-box input::placeholder { color: #6f6974; }

.filters {
  display: flex;
  gap: 4px;
}

.filters button {
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
  color: #85808c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.filters button:hover,
.filters button.is-active {
  background: rgba(255, 255, 255, .1);
  color: white;
}

.progress-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
  padding: 0 8px;
  color: #88828f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.progress-sync i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7b7582;
}

.progress-sync[data-state="synced"] i {
  background: var(--green);
  box-shadow: 0 0 12px rgba(81, 217, 139, .52);
}

.progress-sync[data-state="saving"] i,
.progress-sync[data-state="connecting"] i {
  background: var(--amber);
  animation: sync-pulse 1s ease-in-out infinite;
}

.progress-sync[data-state="error"] { color: #ff9c91; }
.progress-sync[data-state="error"] i { background: var(--red); }

@keyframes sync-pulse {
  50% { opacity: .35; transform: scale(.78); }
}

.project-list {
  border-top: 1px solid var(--line);
}

.games {
  border-top: 1px solid var(--line);
}

.games .project-list {
  border-top-color: rgba(100, 169, 199, .34);
}

.project-row {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.project-summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px 68px minmax(240px, 1fr) minmax(170px, .55fr) minmax(130px, .38fr) 106px;
  gap: 22px;
  align-items: center;
  min-height: 128px;
  padding: 23px 10px 23px 0;
  cursor: pointer;
  transition: background .3s ease, padding .3s ease;
}

.project-summary::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent, var(--violet)) 10%, transparent), transparent 63%);
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}

.project-row:hover .project-summary,
.project-row.is-expanded .project-summary {
  padding-right: 18px;
  padding-left: 14px;
}

.project-row:hover .project-summary::before,
.project-row.is-expanded .project-summary::before { opacity: 1; }
.project-summary > * { position: relative; z-index: 1; }

.project-number {
  color: #5e5863;
  font-size: 9px;
  letter-spacing: .12em;
}

.project-icon {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .23);
  object-fit: cover;
}

.project-name-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.project-title h3 {
  margin: 0;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 570;
  letter-spacing: -.035em;
}

.completion-check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(81, 217, 139, .42);
  border-radius: 50%;
  background: rgba(81, 217, 139, .13);
  box-shadow: 0 0 18px rgba(81, 217, 139, .16);
  animation: completion-pop .28s cubic-bezier(.16, 1, .3, 1) both;
}

.completion-check i {
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border-right: 1.5px solid #78e8a7;
  border-bottom: 1.5px solid #78e8a7;
  transform: rotate(45deg);
}

@keyframes completion-pop {
  from { opacity: 0; transform: scale(.65); }
  to { opacity: 1; transform: scale(1); }
}

.stage-badge {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 99px;
  color: #9d97a4;
  font-size: 8px;
  font-weight: 730;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.stage-badge.is-live {
  border-color: rgba(81, 217, 139, .22);
  background: rgba(81, 217, 139, .08);
  color: #8de9b3;
}

.project-identity > p {
  margin: 7px 0 0;
  color: #817b87;
  font-size: 12px;
}

.project-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  color: #aaa4b0;
  font-size: 10px;
}

.platform-chip strong {
  color: #eeecf1;
  font-weight: 650;
}

.project-progress > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 9px;
}

.project-progress strong {
  font-size: 19px;
  font-weight: 560;
  letter-spacing: -.04em;
}

.project-progress div > span {
  color: #77717d;
  font-size: 9px;
  white-space: nowrap;
}

.project-progress-track {
  display: block;
  height: 3px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
}

.project-progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent, var(--violet));
  box-shadow: 0 0 13px color-mix(in srgb, var(--accent, var(--violet)) 48%, transparent);
  transition: width .45s cubic-bezier(.16, 1, .3, 1);
}

.project-toggle {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #aaa4b0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 670;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.project-toggle:hover,
.project-toggle[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--accent, var(--violet)) 50%, transparent);
  background: color-mix(in srgb, var(--accent, var(--violet)) 10%, transparent);
  color: white;
}

.project-toggle i,
.workstream-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}

.project-toggle[aria-expanded="true"] i {
  transform: rotate(225deg) translate(-1px, -1px);
}

.project-details {
  position: relative;
  z-index: 1;
  margin: 0 0 34px 132px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.project-details-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 21px;
}

.workboard-kicker {
  color: color-mix(in srgb, var(--accent, var(--violet)) 78%, white);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: .17em;
}

.project-details-head p {
  margin: 7px 0 0;
  color: #77717d;
  font-size: 11px;
}

.project-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.project-actions a {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  color: #aaa4b0;
  font-size: 11px;
  transition: border .2s ease, color .2s ease, transform .2s ease;
}

.project-actions a:hover {
  border-color: rgba(255, 255, 255, .35);
  color: white;
  transform: translateY(-2px);
}

.workstream-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.workstream {
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .018);
}

.workstream[open] {
  background: color-mix(in srgb, var(--accent, var(--violet)) 5%, transparent);
}

.workstream summary::-webkit-details-marker { display: none; }
.workstream summary::marker { content: ""; }

.workstream-summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.workstream-title,
.workstream-identity > span {
  display: block;
}

.workstream-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.workstream-title strong {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -.02em;
}

.workstream-identity > span {
  margin-top: 6px;
  color: #77717d;
  font-size: 9px;
  font-weight: 670;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.workstream-completion-check {
  width: 17px;
  height: 17px;
}

.workstream-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #8f8995;
  font-size: 10px;
}

.workstream[open] .workstream-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.task-list {
  padding: 0 22px 18px;
}

.task-row {
  display: grid;
  width: 100%;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 47px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, .075);
  background: transparent;
  color: #c2bdc7;
  cursor: pointer;
  text-align: left;
}

.task-check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.task-check i {
  width: 8px;
  height: 5px;
  border-bottom: 1.5px solid #0a090d;
  border-left: 1.5px solid #0a090d;
  opacity: 0;
  transform: rotate(-45deg) scale(.65);
  transition: opacity .18s ease, transform .22s cubic-bezier(.16, 1, .3, 1);
}

.task-row:hover .task-check { transform: scale(1.08); border-color: var(--accent, var(--violet)); }

.task-row.is-complete .task-check {
  border-color: var(--accent, var(--violet));
  background: var(--accent, var(--violet));
}

.task-row.is-complete .task-check i {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.task-label {
  font-size: 11px;
  line-height: 1.4;
  transition: color .2s ease, opacity .2s ease;
}

.task-row.is-complete .task-label {
  color: #817b87;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, .2);
}

.task-row small {
  color: #635d68;
  font-size: 7px;
  font-weight: 720;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.empty-state {
  padding: 60px 0;
  color: #817b87;
  text-align: center;
}

.website-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.website-summary > div {
  padding: 25px;
  border-right: 1px solid var(--line-dark);
}

.website-summary > div:first-child { padding-left: 0; }
.website-summary > div:last-child { border-right: 0; }

.website-summary strong {
  display: block;
  font-size: clamp(45px, 6vw, 78px);
  font-weight: 460;
  letter-spacing: -.07em;
}

.website-summary span {
  color: #706a73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.website-groups {
  display: grid;
  gap: 72px;
}

.website-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.website-group h3 {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.website-list {
  border-top: 1px solid var(--line-dark);
}

.website-row {
  display: grid;
  grid-template-columns: 14px minmax(180px, .65fr) minmax(210px, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line-dark);
}

.runtime-dot.is-offline { background: #d36356; box-shadow: 0 0 0 5px rgba(211,99,86,.1); }
.runtime-dot.is-unpublished { background: #8c858f; box-shadow: none; }
.runtime-dot.is-checking { background: var(--amber); box-shadow: 0 0 0 5px rgba(240,173,78,.1); }

.website-row strong {
  font-size: 15px;
  font-weight: 580;
}

.website-domain {
  color: #77717a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.website-state {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b656e;
  font-size: 10px;
  font-weight: 690;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.website-state a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease;
}

.website-state a:hover {
  background: var(--ink);
  color: white;
  transform: rotate(8deg);
}

.internal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.internal-item {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.internal-item:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-right: 0;
}

.internal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.internal-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #b5aebc;
  font-size: 20px;
}

.internal-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internal-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.internal-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  color: #85808b;
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.internal-item h3 {
  margin: 34px 0 8px;
  font-size: clamp(26px, 3vw, 41px);
  font-weight: 530;
  letter-spacing: -.05em;
}

.internal-item p {
  max-width: 520px;
  margin: 0;
  color: #8c8591;
  font-size: 13px;
  line-height: 1.55;
}

.internal-meta {
  margin-top: 34px;
  color: #5f5964;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

footer {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  margin: 0 auto;
  padding: 65px var(--gutter);
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 530px;
  margin: 0;
  color: #77717d;
  font-size: 10px;
  line-height: 1.6;
}

footer > a {
  color: #9c96a2;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar nav { display: none; }
  .overview { grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr); }
  .overview__visual { width: clamp(130px, 15vw, 160px); }
  .attention { grid-template-columns: 110px 1fr; }
  .attention-list { grid-column: 2; }
  .section-heading { grid-template-columns: 110px 1fr; }
  .section-heading > p { grid-column: 2; margin-top: -12px; }
  .project-summary { grid-template-columns: 38px 64px minmax(0, 1fr) 150px 100px; }
  .project-number { grid-column: 1; grid-row: 1 / span 2; }
  .project-icon { grid-column: 2; grid-row: 1 / span 2; }
  .project-identity { grid-column: 3; grid-row: 1; }
  .project-platforms { grid-column: 3; grid-row: 2; }
  .project-progress { grid-column: 4; grid-row: 1 / span 2; }
  .project-toggle { grid-column: 5; grid-row: 1 / span 2; }
}

@media (max-width: 760px) {
  .ambient__violet { right: -95vw; }
  .ambient__red { left: -70vw; bottom: -25vw; }
  .auth-shell { padding: 18px; }
  .auth-panel { padding: 28px 22px; border-radius: 25px; }
  .brand--auth { margin-bottom: 56px; }
  .auth-panel h1 { font-size: clamp(46px, 14vw, 66px); }
  .auth-coordinate { display: none; }
  .topbar { top: 10px; left: 10px; right: 10px; }
  .topbar .brand small, .topbar .brand i, .account-button span, .icon-button { display: none; }
  .section-shell { padding-top: 100px; padding-bottom: 100px; }
  .overview {
    height: 100svh;
    min-height: min(600px, 100svh);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 16px;
    padding-top: 96px;
    padding-bottom: 24px;
  }
  .overview__visual {
    position: absolute;
    top: 100px;
    right: -28px;
    width: 150px;
  }
  .overview__visual.reveal.is-visible { opacity: .42; }
  .overview__title { grid-column: 1; grid-row: 1; }
  .overview__title h1 { font-size: clamp(64px, 23vw, 104px); }
  .overview__statement {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    align-items: end;
    align-self: end;
    justify-content: space-between;
    padding-bottom: 0;
  }
  .overview__statement p { display: none; }
  .overview__statement strong { font-size: 24px; }
  .metrics { grid-column: 1; grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .metric { min-height: 74px; padding: 12px; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd) { padding-left: 0; }
  .metric strong { font-size: 34px; }
  .metric span { margin-top: 5px; font-size: 8px; }
  .scroll-cue { display: none; }
  .attention { display: block; }
  .attention .section-index { margin-bottom: 22px; }
  .attention-list { margin-top: 48px; }
  .attention-item { grid-template-columns: 34px 1fr; }
  .attention-item a { grid-column: 2; }
  .section-heading { display: block; }
  .section-heading .section-index { margin-bottom: 22px; }
  .section-heading > p { margin-top: 22px; }
  .portfolio-tools { top: 80px; display: block; overflow: hidden; }
  .search-box { min-height: 42px; }
  .filters { overflow-x: auto; padding-top: 8px; }
  .filters button { flex: 0 0 auto; }
  .progress-sync { padding: 12px 10px 3px; }
  .project-summary { grid-template-columns: 26px 56px minmax(0, 1fr) 42px; gap: 16px; padding: 22px 0; }
  .project-number { grid-column: 1; grid-row: 1; }
  .project-icon { grid-column: 2; grid-row: 1; }
  .project-identity { grid-column: 3; grid-row: 1; }
  .project-icon { width: 54px; height: 54px; border-radius: 13px; }
  .project-name-line { align-items: flex-start; flex-direction: column; gap: 7px; }
  .project-platforms { grid-column: 2 / -1; grid-row: 2; }
  .project-progress { grid-column: 2 / -1; grid-row: 3; }
  .project-toggle { grid-column: 4; grid-row: 1; min-width: 42px; padding: 0; }
  .project-toggle span { display: none; }
  .project-row:hover .project-summary,
  .project-row.is-expanded .project-summary { padding-left: 0; padding-right: 0; }
  .project-details { margin: 0 0 28px 0; }
  .project-details-head { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .project-actions { justify-content: flex-start; }
  .workstream-list { grid-template-columns: 1fr; }
  .workstream-summary { min-height: 74px; padding: 16px; }
  .task-list { padding: 0 16px 14px; }
  .task-row { grid-template-columns: 24px minmax(0, 1fr); }
  .task-row small { display: none; }
  .website-summary { grid-template-columns: repeat(3, 1fr); margin-bottom: 58px; }
  .website-summary > div { padding: 18px 10px; }
  .website-summary strong { font-size: 42px; }
  .website-group { display: block; }
  .website-group h3 { margin-bottom: 18px; }
  .website-row { grid-template-columns: 12px 1fr auto; padding: 14px 0; }
  .website-domain { grid-column: 2 / -1; grid-row: 2; }
  .website-state { grid-column: 3; grid-row: 1; }
  .website-state span { display: none; }
  .internal-list { grid-template-columns: 1fr; }
  .internal-item, .internal-item:nth-child(even) { min-height: 230px; padding: 28px 0; border-right: 0; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
