﻿:root {
  --bg:#050912;
  --bg-alt:#0f1729;
  --surface:#111b30;
  --accent:#66e0ff;
  --accent-soft:rgba(102,224,255,0.12);
  --text:#f5f7fb;
  --muted:#9fb0d7;
  --gradient:linear-gradient(135deg,#4785ff, #5df2d6 60%, #f8bfff);
}
* {
  box-sizing:border-box;
}
.hidden,
.is-hidden {
  display:none !important;
}
body {
  margin:0;
  font-family:'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  background-image:
    radial-gradient(circle at top,rgba(24,36,73,0.75) 0%, rgba(5,9,18,0.95) 55%),
    url("/resources/images/ha-chan_background.png");
  background-size:100% 100%, cover;
  background-position:top center, center;
  background-repeat:no-repeat, no-repeat;
  background-attachment:scroll, scroll;
  color:var(--text);
  min-height:100vh;
  padding:40px 20px 80px;
}
.site-shell {
  max-width:1200px;
  margin:0 auto;
  background:rgba(8,12,26,0.9);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  padding:32px clamp(20px,4vw,48px) 48px;
  box-shadow:0 22px 50px rgba(0,0,0,0.45);
  position:relative;
  overflow:hidden;
}
.site-shell::after {
  content:"";
  position:absolute;
  inset:10% auto auto 60%;
  width:320px;
  height:320px;
  background:radial-gradient(circle,rgba(102,224,255,0.25),transparent 70%);
  filter:blur(40px);
  pointer-events:none;
}
header.primary-nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,0.05);
  flex-wrap:wrap;
}
.hero-panel,
.spotlight,
.card-grid,
.showcase,
.beta-banner,
.roadmap,
.collabs-section,
.delulu-section,
.recruit-grid {
  content-visibility:auto;
  contain-intrinsic-size:600px;
}
.card,
.showcase-card,
.collab-group,
.delulu-group,
.recruit-row,
.modal-card {
  content-visibility:auto;
  contain:layout style paint;
  contain-intrinsic-size:320px;
}
.loading-strip {
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(5,10,24,0.8);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
}
.loading-strip.hidden {
  display:none !important;
}
.loading-strip img {
  width:72px;
  height:72px;
  object-fit:contain;
  flex-shrink:0;
}
.loading-copy {
  display:flex;
  flex-direction:column;
  gap:4px;
}
.loading-copy strong {
  font-size:1rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.loading-copy span {
  color:var(--muted);
  font-size:0.95rem;
}
.brand {
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
  letter-spacing:0.04em;
}
.brand img {
  width:56px;
  height:56px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
}
nav ul {
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}
nav a {
  text-decoration:none;
  color:var(--muted);
  font-size:0.95rem;
  padding:8px 14px;
  border-radius:999px;
  transition:0.3s ease;
}
nav a:hover,
nav a:focus {
  color:var(--text);
  background:var(--accent-soft);
}
.cta {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 20px;
  border-radius:999px;
  border:none;
  background:var(--gradient);
  color:#02030a;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(93,242,214,0.35);
}
.cta.cta-ghost {
  background:rgba(255,255,255,0.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:none;
}
.cta.cta-ghost:hover,
.cta.cta-ghost:focus {
  background:rgba(255,255,255,0.12);
  border-color:rgba(102,224,255,0.45);
}
.session-status {
  margin-left:auto;
  background:rgba(5,9,18,0.75);
  border:1px solid rgba(102,224,255,0.4);
  border-radius:16px;
  padding:10px 16px;
  font-size:0.9rem;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:12px;
}
.session-status strong {
  color:var(--text);
}
.session-status.hidden {
  display:none;
}
.session-avatar {
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(255,255,255,0.3);
  box-shadow:0 3px 12px rgba(0,0,0,0.4);
}
.session-info {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.session-subtext {
  font-size:0.75rem;
  color:var(--muted);
}
.role-tag {
  display:inline-flex;
  align-items:center;
  font-size:0.75rem;
  letter-spacing:0.15em;
  margin-left:12px;
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(120deg,rgba(93,242,214,0.2), rgba(255,111,216,0.35));
  border:1px solid rgba(255,255,255,0.2);
  color:var(--text);
  font-weight:700;
  margin-left:8px;
}
.hero-panel {
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:32px;
  align-items:center;
}
.eyebrow {
  text-transform:uppercase;
  font-size:0.85rem;
  letter-spacing:0.3em;
  color:var(--muted);
}
h1 {
  font-size:clamp(2.4rem,5vw,3.6rem);
  margin:14px 0;
  line-height:1.1;
}
.hero-panel p {
  font-size:1.1rem;
  color:var(--muted);
  margin-bottom:24px;
}
.hero-meta {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.meta-pill {
  padding:10px 16px;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  font-size:0.9rem;
}
.hero-media {
  background:var(--surface);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:26px;
  padding:24px;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(4,6,12,0.45);
}
.hero-media img {
  width:100%;
  border-radius:18px;
  object-fit:cover;
  min-height:260px;
}
.hero-media::after {
  content:"Live Preview";
  position:absolute;
  top:18px;
  right:22px;
  font-size:0.8rem;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(5,9,18,0.75);
  color:var(--muted);
  border:1px solid rgba(255,255,255,0.08);
}
.spotlight {
  margin-top:46px;
}
.spotlight-card {
  padding:26px;
  border-radius:26px;
  background:linear-gradient(160deg, rgba(17,27,48,0.85), rgba(6,10,22,0.9));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 45px rgba(4,6,12,0.45);
  position:relative;
  overflow:hidden;
}
.spotlight-card::after {
  content:"";
  position:absolute;
  inset:auto -60px -80px auto;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(102,224,255,0.35), transparent 65%);
  filter:blur(20px);
  opacity:0.9;
  pointer-events:none;
}
.spotlight-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}
.spotlight-desc {
  margin-top:10px;
  color:var(--muted);
  max-width:70ch;
}
.spotlight-timer {
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  min-width:170px;
  text-align:right;
}
.timer-label {
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:var(--muted);
}
.timer-value {
  font-family:"Space Grotesk", system-ui, sans-serif;
  font-size:1.6rem;
  letter-spacing:0.08em;
  margin-top:6px;
}
.hangman {
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  position:relative;
  z-index:1;
}
.hangman-word {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-family:"Space Grotesk", system-ui, sans-serif;
  font-size:1.55rem;
  letter-spacing:0.12em;
}
.hangman-char {
  min-width:18px;
  text-align:center;
  padding:2px 0;
  border-bottom:2px solid rgba(255,255,255,0.22);
}
.hangman-gap {
  min-width:14px;
  border-bottom-color:transparent;
}
.hangman-meta {
  margin-top:10px;
  color:var(--muted);
  font-size:0.95rem;
}
.hangman-keys {
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hangman-key {
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:var(--text);
  padding:10px 0;
  min-width:42px;
  font-family:"Space Grotesk", system-ui, sans-serif;
  letter-spacing:0.12em;
  cursor:pointer;
  transition:transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.hangman-key:hover {
  transform:translateY(-1px);
  background:rgba(255,255,255,0.07);
  border-color:rgba(102,224,255,0.35);
}
.hangman-key:disabled {
  opacity:0.45;
  cursor:not-allowed;
  transform:none;
}
.spotlight-winners {
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  position:relative;
  z-index:1;
}
.spotlight-winners h3 {
  margin-top:0;
}
.winners-list {
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.winner-pill {
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  font-size:0.95rem;
}
.spotlight-actions {
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  position:relative;
  z-index:1;
}
.card-grid {
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.card {
  padding:24px;
  background:var(--surface);
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.06);
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(0,0,0,0.35);
}
.card::after {
  content:"";
  position:absolute;
  inset:auto 20px -30px auto;
  width:140px;
  height:140px;
  background:radial-gradient(circle,rgba(238,135,255,0.4),transparent 65%);
  filter:blur(20px);
  opacity:0;
  transition:0.3s;
}
.card:hover::after {
  opacity:1;
}
.card h3 {
  margin-top:8px;
  margin-bottom:12px;
}
.tag {
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.2em;
  color:var(--muted);
}
.showcase {
  margin-top:60px;
  background:rgba(17,27,48,0.8);
  border-radius:28px;
  padding:32px;
  border:1px solid rgba(255,255,255,0.05);
}
.showcase-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:24px;
}
.showcase-card {
  background:rgba(5,8,20,0.7);
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.04);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.showcase-card img {
  width:100%;
  height:180px;
  object-fit:cover;
}
.showcase-card .content {
  padding:18px 20px 24px;
}
.roadmap {
  margin-top:64px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}
.milestone {
  background:rgba(255,255,255,0.03);
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(255,255,255,0.04);
}
.milestone span {
  font-size:0.85rem;
  color:var(--muted);
}
.collabs-section {
  margin-top:64px;
  background:rgba(5,10,25,0.8);
  border-radius:28px;
  padding:32px;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 18px 38px rgba(2,4,9,0.45);
}
.collabs-blurb {
  color:var(--muted);
  margin-bottom:24px;
}
.collab-filters {
  margin-bottom:20px;
}
.collab-filter-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.collab-filter-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  flex-wrap:wrap;
}
.collab-filter-label {
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.2em;
  color:var(--muted);
  margin-bottom:0;
}
.filter-chips {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.filter-chip {
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08);
  color:var(--text);
  padding:6px 14px;
  font-size:0.85rem;
  cursor:pointer;
  transition:0.2s ease;
}
.filter-chip.is-active {
  border-color:rgba(102,224,255,0.55);
  background:rgba(102,224,255,0.14);
 }
.chip-count {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  padding:2px 8px;
  border-radius:999px;
  margin-left:6px;
  font-size:0.8em;
  background:rgba(255,255,255,0.08);
  color:var(--muted);
}
.filter-chip.is-muted {
  background:transparent;
  color:var(--muted);
  border-color:rgba(255,255,255,0.1);
  opacity:0.7;
}
.collab-groups {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.collab-group {
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  background:rgba(9,16,33,0.85);
  overflow:hidden;
  box-shadow:0 10px 18px rgba(0,0,0,0.35);
}
.collab-group summary {
  padding:18px 20px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
  color:var(--text);
}
.collab-group summary::-webkit-details-marker {
  display:none;
}
.collab-count {
  font-size:0.8rem;
  color:var(--muted);
  background:rgba(255,255,255,0.08);
  padding:4px 10px;
  border-radius:999px;
}
.collab-list {
  margin:0;
  padding:0 20px 18px;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.collab-list li {
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
}
.collab-item {
  display:flex;
}
.join-toggle {
  display:flex;
  align-items:flex-start;
  gap:10px;
  width:100%;
  cursor:pointer;
}
.collab-item-main {
  display:flex;
  flex-direction:column;
  gap:6px;
  width:100%;
}
.collab-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.status-tag,
.deadline-tag {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.07);
  font-size:0.75rem;
  line-height:1.1;
}
.status-tag {
  text-transform:uppercase;
  letter-spacing:0.12em;
}
.status-tag--joined {
  border-color:rgba(46, 204, 113, 0.35);
  background:rgba(46, 204, 113, 0.14);
  color:rgba(191, 245, 211, 0.95);
}
.status-tag--delayed {
  border-color:rgba(255, 193, 7, 0.35);
  background:rgba(255, 193, 7, 0.14);
  color:rgba(255, 234, 180, 0.95);
}
.status-tag--not {
  border-color:rgba(255, 91, 138, 0.32);
  background:rgba(255, 91, 138, 0.12);
  color:rgba(255, 203, 221, 0.95);
}
.deadline-tag {
  color:var(--text);
  opacity:0.9;
}
.join-toggle input {
  width:18px;
  height:18px;
  accent-color:var(--accent);
}
.collab-empty {
  margin-top:18px;
  text-align:center;
  color:var(--muted);
  font-size:0.9rem;
}
.collab-empty.group-note {
  margin:0;
  padding:0 20px 18px;
  text-align:left;
}
.delulu-hero {
  margin-top:40px;
  padding:22px 6px 0;
}
.delulu-subhead {
  color:var(--muted);
  font-size:1.05rem;
  max-width:64ch;
}
.delulu-section {
  margin-top:40px;
  background:rgba(5,10,25,0.8);
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 18px 38px rgba(2,4,9,0.45);
}
.delulu-denied {
  color:var(--muted);
  text-align:center;
  padding:18px 0;
}
.delulu-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.recruit-grid {
  display:grid;
  grid-template-columns:minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap:16px;
}
.recruit-card {
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  background:rgba(9,16,33,0.85);
  padding:18px 20px;
  box-shadow:0 12px 22px rgba(0,0,0,0.35);
}
.recruit-form {
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.recruit-split {
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:12px;
}
.recruit-field {
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}
.recruit-label {
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--muted);
}
.recruit-input {
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
  font:inherit;
  color-scheme:dark;
  width:100%;
  min-width:0;
  box-sizing:border-box;
}
.recruit-input option {
  background:#0b1223;
  color:var(--text);
}
select.recruit-input {
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:42px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(45deg, transparent 50%, rgba(230,241,255,0.9) 50%),
    linear-gradient(135deg, rgba(230,241,255,0.9) 50%, transparent 50%);
  background-repeat:no-repeat;
  background-size:auto, 8px 8px, 8px 8px;
  background-position:0 0, right 18px center, right 12px center;
}
.recruit-input:focus {
  outline:none;
  border-color:rgba(102,224,255,0.55);
  box-shadow:0 0 0 3px rgba(102,224,255,0.18);
}
.recruit-textarea {
  resize:vertical;
  min-height:120px;
}
.recruit-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:6px;
}
.recruit-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.recruit-list {
  margin-top:8px;
}
.recruit-table {
  display:flex;
  flex-direction:column;
  gap:12px;
}
.recruit-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
}
.recruit-main {
  flex:1;
  min-width:220px;
}
.recruit-title {
  margin-bottom:8px;
}
.recruit-row-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}
.recruit-row-actions .filter-chip {
  padding:7px 12px;
  font-size:0.82rem;
}
.delulu-status {
  color:var(--muted);
  font-size:0.95rem;
}
.delulu-groups {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.delulu-group {
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  background:rgba(9,16,33,0.85);
  overflow:hidden;
}
.delulu-group summary {
  padding:18px 20px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
  color:var(--text);
}
.delulu-group summary::-webkit-details-marker {
  display:none;
}
.delulu-table {
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:0 20px 18px;
}
.delulu-row {
  display:grid;
  grid-template-columns: 1.4fr auto 2fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
}
.delulu-name strong {
  display:block;
}
.delulu-meta {
  margin-top:4px;
  color:var(--muted);
  font-size:0.85rem;
}
.delulu-progress {
  display:flex;
  justify-content:center;
}
.radial {
  --p:0;
  width:54px;
  height:54px;
  border-radius:50%;
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 22px rgba(0,0,0,0.35);
}
.radial::before {
  content:"";
  position:absolute;
  inset:2px;
  border-radius:50%;
  background:conic-gradient(
    rgba(102,224,255,0.95) 0 calc(var(--p) * 1%),
    rgba(255,255,255,0.08) 0 100%
  );
}
.radial span {
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(5,9,18,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.85rem;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.12);
  position:relative;
  z-index:1;
}
.delulu-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}
.delulu-field {
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:0.85rem;
}
.delulu-field-label {
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--muted);
}
.delulu-field-delayed {
  white-space:nowrap;
}
.delulu-field-deadline {
  flex-direction:column;
  align-items:stretch;
  gap:6px;
  min-width:240px;
}
.delulu-deadline-wrap {
  position:relative;
  display:flex;
  align-items:center;
  border-radius:14px;
  padding:9px 12px 9px 34px;
  border:1px solid rgba(255,255,255,0.14);
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
  transition:0.2s ease;
}
.delulu-deadline-wrap::before {
  content:"";
  position:absolute;
  left:12px;
  width:14px;
  height:14px;
  opacity:0.85;
  background-repeat:no-repeat;
  background-position:center;
  background-size:14px 14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='3'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}
.delulu-deadline-wrap:focus-within {
  border-color:rgba(102,224,255,0.55);
  box-shadow:0 0 0 3px rgba(102,224,255,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}
.delulu-deadline {
  appearance:none;
  -webkit-appearance:none;
  background:transparent;
  border:0;
  padding:0;
  color:var(--text);
  font:inherit;
  min-width:180px;
  color-scheme:dark;
}
.delulu-deadline::-webkit-calendar-picker-indicator {
  opacity:0.65;
  filter:invert(1);
  cursor:pointer;
}
.delulu-deadline::-webkit-datetime-edit,
.delulu-deadline::-webkit-datetime-edit-fields-wrapper,
.delulu-deadline::-webkit-datetime-edit-text,
.delulu-deadline::-webkit-datetime-edit-month-field,
.delulu-deadline::-webkit-datetime-edit-day-field,
.delulu-deadline::-webkit-datetime-edit-year-field,
.delulu-deadline::-webkit-datetime-edit-hour-field,
.delulu-deadline::-webkit-datetime-edit-minute-field {
  color:var(--text);
}
.filter-chip:disabled {
  opacity:0.55;
  cursor:not-allowed;
}
.modal {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:999;
}
.modal-card {
  width:min(860px, 100%);
  background:rgba(8,12,26,0.95);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,0.45);
  overflow:hidden;
}
.modal-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.modal-title {
  margin:6px 0 0;
}
.modal-body {
  padding:18px 20px 22px;
}
.modal-list {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.modal-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
}
.modal-item input {
  width:18px;
  height:18px;
  accent-color:var(--accent);
}
@media (prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .card::after,
  .spotlight-card::after,
  .hero-media::after {
    display:none;
  }
}

@media (max-width:1024px) {
  .site-shell {
    backdrop-filter:none;
    background:rgba(8,12,26,0.97);
  }
}
@media (max-width:900px) {
  .delulu-row {
    grid-template-columns: 1fr;
    justify-items:start;
  }
  .delulu-actions {
    width:100%;
    justify-content:flex-start;
  }
  .delulu-progress {
    justify-content:flex-start;
  }
  .recruit-grid {
    grid-template-columns:1fr;
  }
  .recruit-split {
    grid-template-columns:1fr;
  }
  .recruit-row-actions {
    justify-content:flex-start;
  }
}
.beta-banner {
  margin-top:60px;
  padding:32px;
  border-radius:28px;
  background:linear-gradient(120deg,rgba(69,108,255,0.3), rgba(117,240,255,0.35));
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:space-between;
  align-items:center;
}
.beta-banner .cta {
  padding:12px 28px;
  white-space:nowrap;
}
footer {
  margin-top:70px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:0.9rem;
}
.socials {
  display:flex;
  gap:12px;
}
.socials a {
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  text-decoration:none;
  transition:0.3s;
}
.socials a:hover {
  background:var(--accent-soft);
}
@media (max-width:600px) {
  body {
    padding:20px 12px 60px;
  }
  header.primary-nav {
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-meta {
    flex-direction:column;
  }
  .beta-banner .cta {
    width:100%;
    justify-content:center;
    text-align:center;
  }
}
