:root {
  --bg: #fff8fc;
  --bg-soft: #ffeef7;
  --panel: #ffffff;
  --panel-alt: #fff7fb;
  --text: #3a2431;
  --muted: #7b5b6c;
  --brand: #ff4da6;
  --brand-strong: #e43892;
  --line: #f2d5e6;
  --success: #18794e;
  --warn: #ca8a04;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, #ffffff, transparent 36%),
    radial-gradient(circle at 88% 0%, #ffe8f4, transparent 30%),
    radial-gradient(circle at 85% 85%, #0e3b36, transparent 32%),
    linear-gradient(160deg, var(--bg-soft), var(--bg));
  position: relative;
  overflow-x: hidden;
  padding-top: 88px;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(3px);
  z-index: 0;
}

.bg-shape-a {
  width: 260px;
  height: 260px;
  background: #ff4da6;
  top: -90px;
  right: -80px;
}

.bg-shape-b {
  width: 300px;
  height: 300px;
  background: #1fd7a3;
  bottom: -120px;
  left: -80px;
}

.taskbar-wrap,
.layout {
  position: relative;
  z-index: 2;
}

.taskbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 252, 0.85);
  border-bottom: 1px solid rgba(242, 213, 230, 0.8);
  box-shadow: 0 2px 8px rgba(228, 56, 146, 0.06);
}

.taskbar {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
}

.topnav {
  display: inline-flex;
  gap: 10px;
}

.topnav a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.2s ease;
  text-decoration: none;
}

.topnav a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(228, 56, 146, 0.3);
}

.join-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.join-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(255, 77, 166, 0.16);
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48a8ff, var(--brand));
  box-shadow: 0 0 0 6px rgba(47, 228, 163, 0.16);
}

.layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(228, 56, 146, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(228, 56, 146, 0.12);
  transform: translateY(-2px);
}

.eyebrow {
  color: #7deac7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.25;
  font-family: "Outfit", sans-serif;
  margin: 0;
}

h1 {
  margin-top: 4px;
  font-size: clamp(30px, 5.5vw, 50px);
}

.hero-copy {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 65ch;
}

.sync-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-status-wrap {
  margin-top: 10px;
}

.service-status-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.service-status-head h2 {
  font-size: 18px;
}

.service-status-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-status-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
}

.service-name {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.service-state {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-state.open {
  color: var(--success);
}

.service-state.delayed {
  color: var(--warn);
}

.service-state.closed {
  color: var(--danger);
}

.service-status-empty {
  padding: 10px 0;
  color: var(--muted);
}

.hero-cta,
.hero-link {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.hero-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 56, 146, 0.3);
}

.hero-link {
  color: var(--brand);
  border: 1px solid var(--brand);
  background: rgba(255, 77, 166, 0.06);
}

.hero-link:hover {
  background: rgba(255, 77, 166, 0.12);
  transform: translateY(-2px);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.portfolio-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: 16px;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

.portfolio-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(228, 56, 146, 0.15);
}

.portfolio-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: linear-gradient(135deg, var(--panel), var(--panel-alt));
  overflow: hidden;
}

.portfolio-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-discord-pfp {
  position: absolute;
  bottom: 8px !important;
  right: 8px !important;
  width: 48px !important;
  height: 48px !important;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: var(--panel);
  object-fit: cover;
}

.portfolio-content {
  padding: 14px;
  flex-grow: 1;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.portfolio-name {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.portfolio-bio {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.offerings-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.offering-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: none;
}

.offering-title {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.offering-description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cta {
  text-align: center;
}

.cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta .hero-cta {
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.55s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 142px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: minmax(0, 320px);
  }

  .service-status-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .taskbar {
    padding: 12px 16px;
    gap: 8px;
    align-items: center;
    flex-direction: column;
  }

  .card {
    padding: 18px;
  }

  .topnav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .join-btn {
    width: 100%;
    text-align: center;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .hero-cta,
  .hero-link {
    justify-content: center;
  }
}
