:root {
  --ink: #f8faf7;
  --muted: #cbd7df;
  --soft: rgba(248, 250, 247, 0.72);
  --panel: rgba(12, 20, 29, 0.58);
  --panel-strong: rgba(14, 22, 33, 0.78);
  --stroke: rgba(191, 239, 255, 0.16);
  --accent: #37e7ff;
  --accent-2: #ff4fd8;
  --accent-3: #5177ff;
  --accent-4: #aa62ff;
  --aurora-gradient: linear-gradient(120deg, #ff4fd8, #9b5cff, #37e7ff, #4f73ff, #ff4fd8);
  --deep: #080b0b;
  --radius: 8px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(4, 8, 13, 0.98), rgba(8, 19, 28, 0.96) 46%, rgba(22, 8, 31, 0.98)),
    var(--deep);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
  animation: gridDrift 18s linear infinite;
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 38vh;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(55, 231, 255, 0.1), rgba(255, 79, 216, 0.08));
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  filter: brightness(1.1);
}

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

button {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.glass-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(9, 13, 13, 0.54);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(145%);
  transform: translateX(-50%);
}

.brand-lockup,
.glass-nav nav {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
  color: #eefcff;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 34px rgba(55, 231, 255, 0.2), 0 0 48px rgba(255, 79, 216, 0.14);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-nav nav {
  gap: 4px;
}

.glass-nav nav a {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.glass-nav nav a:hover,
.glass-nav nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  outline: none;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 80vh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 30px;
  padding: 132px max(22px, calc((100vw - 1120px) / 2)) 28px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(1.496) contrast(1.08) saturate(1.1);
  transform: scale(1.04);
  transition: opacity 1100ms ease, transform 6200ms ease;
}

.hero-image.is-active {
  opacity: 0.86;
  transform: scale(1);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.78), rgba(4, 7, 12, 0.24) 52%, rgba(4, 7, 12, 0.74)),
    linear-gradient(0deg, rgba(4, 7, 12, 0.82), transparent 50%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.42), transparent 38%);
}

.motion-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-grid span {
  position: absolute;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 216, 0.72), rgba(55, 231, 255, 0.82), transparent);
  opacity: 0.54;
  transform: rotate(-18deg);
  animation: lightSweep 8s linear infinite;
}

.motion-grid span:nth-child(1) {
  top: 28%;
  left: -22%;
}

.motion-grid span:nth-child(2) {
  top: 62%;
  left: 20%;
  width: 380px;
  animation-delay: -2.8s;
}

.motion-grid span:nth-child(3) {
  top: 42%;
  left: 64%;
  width: 300px;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  background: var(--aurora-gradient);
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: gradientFlow 8s ease infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: #fffef5;
  font-size: clamp(4.1rem, 13vw, 10.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.hero-copy,
.section-heading p,
.card-copy p,
.contact-card p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(55, 231, 255, 0.18), 0 18px 58px rgba(255, 79, 216, 0.14);
  outline: none;
}

.button.primary {
  background: var(--aurora-gradient);
  background-size: 320% 320%;
  color: #061016;
  animation: gradientFlow 7s ease infinite;
}

.button.ghost {
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.14), rgba(255, 79, 216, 0.1));
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.glass-panel {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(145%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
  padding: 20px;
}

.hero-panel div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(191, 239, 255, 0.14);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-value {
  color: #f3fdff;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.05;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
  text-align: left;
}

.section-wrap {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 24px;
}

.motd-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 0;
}

.motd-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(24px, 5vw, 48px);
}

.motd-card.has-embed {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
}

.motd-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(55, 231, 255, 0.15), transparent 46%),
    linear-gradient(300deg, rgba(255, 79, 216, 0.14), transparent 48%);
  pointer-events: none;
}

.motd-copy,
.motd-embed {
  position: relative;
  z-index: 1;
}

.motd-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: 1.02;
  white-space: pre-wrap;
}

.motd-link {
  width: fit-content;
}

.motd-embed {
  overflow: hidden;
  border-radius: 8px;
  background: #05080d;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  aspect-ratio: 16 / 9;
}

.motd-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.studio-copy p + p {
  margin-top: -4px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.featured-card,
.model-card {
  overflow: hidden;
}

.featured-card {
  min-height: 0;
  height: auto;
  align-self: start;
}

.image-button,
.mini-scene,
.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.image-button img,
.mini-scene img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.image-button:hover img,
.mini-scene:hover img,
.gallery-item:hover img {
  filter: brightness(1.1) saturate(1.12) contrast(1.05);
  transform: scale(1.035);
}

.gallery-item,
.mini-scene[data-full] {
  cursor: pointer;
}

.gallery-item:focus-visible,
.mini-scene[data-full]:focus-visible,
.close-lightbox:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.gallery-item:focus-visible img,
.mini-scene[data-full]:focus-visible img {
  filter: brightness(1.1) saturate(1.12) contrast(1.05);
  transform: scale(1.035);
}

.featured-card .image-button {
  height: 290px;
}

.card-copy {
  padding: 14px 16px 16px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.14), rgba(255, 79, 216, 0.12));
  color: #dffbff;
  font-size: 0.78rem;
  font-weight: 800;
}

.scene-stack {
  display: grid;
  gap: 18px;
}

.mini-scene {
  min-height: 160px;
  border: 1px solid var(--stroke);
  background: var(--panel-strong);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gallery-item {
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 1;
}

.model-section {
  padding-top: 92px;
}

.model-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.model-card {
  padding: 10px;
}

/* Model collages are near-square; size the frame to the image instead of cropping. */
.model-card .image-button {
  aspect-ratio: auto;
}

.model-card .image-button img {
  height: auto;
  object-fit: contain;
}

.contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(55, 231, 255, 0.18), transparent 42%),
    linear-gradient(290deg, rgba(255, 79, 216, 0.18), transparent 46%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  max-width: 880px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.12), rgba(255, 79, 216, 0.1));
  color: var(--ink);
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.request-form label {
  color: #effdff;
  font-size: 0.86rem;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 12px 13px;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(248, 250, 247, 0.46);
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(55, 231, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(55, 231, 255, 0.14);
}

.offer-input-group {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
}

.offer-symbol {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(55, 231, 255, 0.18), rgba(255, 79, 216, 0.16)),
    rgba(255, 255, 255, 0.08);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dollar-symbol {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.robux-symbol {
  display: none;
  width: 18px;
  height: 18px;
  border: 5px solid currentColor;
  transform: rotate(45deg);
}

.offer-symbol.is-robux .dollar-symbol {
  display: none;
}

.offer-symbol.is-robux .robux-symbol {
  display: block;
}

.payment-select {
  position: relative;
  z-index: 3;
}

.payment-select-button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(55, 231, 255, 0.55);
  border-radius: 8px;
  padding: 12px 13px;
  background:
    linear-gradient(135deg, rgba(55, 231, 255, 0.12), rgba(255, 79, 216, 0.16)),
    rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 0 rgba(55, 231, 255, 0);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.payment-select-button:hover,
.payment-select-button:focus-visible,
.payment-select.is-open .payment-select-button {
  border-color: rgba(55, 231, 255, 0.9);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(55, 231, 255, 0.13),
    0 14px 44px rgba(255, 79, 216, 0.12);
}

.payment-select-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid rgba(248, 250, 247, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transition: transform 180ms ease;
}

.payment-select.is-open .payment-select-arrow {
  transform: rotate(180deg);
}

.payment-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(55, 231, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 27, 42, 0.96), rgba(10, 14, 25, 0.98)),
    rgba(8, 12, 20, 0.96);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.54),
    0 0 38px rgba(55, 231, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(150%);
}

.payment-select-menu[hidden] {
  display: none !important;
}

.payment-option {
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 9px 11px;
  background: transparent;
  color: #eef8ff;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.payment-option:hover,
.payment-option:focus-visible {
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.18), rgba(255, 79, 216, 0.16));
  color: #ffffff;
  outline: none;
}

.payment-option.is-selected {
  background: var(--aurora-gradient);
  background-size: 260% 260%;
  color: #061016;
  animation: gradientFlow 8s ease infinite;
}

.request-form .button {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.bot-field {
  display: none;
}

.admin-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.admin-shell {
  width: min(980px, calc(100% - 32px));
  padding: 72px 0;
}

.admin-card {
  padding: clamp(24px, 5vw, 46px);
}

.admin-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 38px rgba(55, 231, 255, 0.22), 0 0 52px rgba(255, 79, 216, 0.16);
}

.admin-login {
  display: grid;
  max-width: 420px;
  gap: 12px;
  margin-top: 24px;
}

.admin-login label {
  color: #effdff;
  font-weight: 800;
}

.admin-login input {
  min-height: 48px;
  border: 1px solid rgba(191, 239, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.form-status,
.empty-state {
  color: var(--muted);
}

.admin-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.request-list {
  display: grid;
  gap: 14px;
}

.request-item {
  padding: 18px;
  box-shadow: none;
}

.request-item time {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-item h2,
.request-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.request-item p {
  color: var(--muted);
  white-space: pre-wrap;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
}

.admin-inbox {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 79, 216, 0.12), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(55, 231, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(13, 24, 37, 0.82), rgba(12, 16, 28, 0.72));
}

.admin-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-title-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-logo.small {
  width: 58px;
  height: 58px;
  margin: 0;
}

.admin-inbox h1 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.admin-logout {
  min-width: 98px;
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.12), rgba(255, 79, 216, 0.18));
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  position: relative;
  min-height: 106px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(7, 15, 25, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric-card.has-new::before,
.request-item.is-new::before {
  position: absolute;
  content: "";
  background: #ff2e55;
  box-shadow: 0 0 18px rgba(255, 46, 85, 0.72);
}

.metric-card.has-new::before {
  top: 16px;
  right: 16px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: #f8ffff;
  font-size: 3rem;
  line-height: 1;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.admin-tab.is-active {
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.22), rgba(255, 79, 216, 0.18));
  color: #f8ffff;
}

.red-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff2e55;
  box-shadow: 0 0 18px rgba(255, 46, 85, 0.82);
}

.tab-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: #f8ffff;
  font-size: 0.8rem;
}

.request-list {
  gap: 12px;
}

.request-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(6, 13, 23, 0.56);
}

.request-item.is-new::before {
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.request-item-head,
.request-fields,
.request-actions {
  padding: 16px 18px;
}

.request-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(191, 239, 255, 0.11);
}

.request-item time {
  margin: 0;
}

.status-pill {
  min-width: 74px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #f8ffff;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.status-pill.new {
  background: rgba(255, 46, 85, 0.22);
  color: #ffdce3;
}

.status-pill.todo {
  background: rgba(55, 231, 255, 0.16);
  color: #cbf9ff;
}

.status-pill.archived {
  background: rgba(170, 98, 255, 0.18);
  color: #eadcff;
}

.request-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.65fr) minmax(160px, 0.75fr);
  gap: 16px;
}

.request-field {
  min-width: 0;
}

.request-field h3 {
  margin-bottom: 6px;
  color: #f8ffff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.request-field p {
  margin-bottom: 0;
  color: var(--muted);
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(191, 239, 255, 0.11);
}

.request-action {
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8ffff;
  cursor: pointer;
  font-weight: 800;
}

.request-action:hover,
.request-action:focus-visible {
  background: linear-gradient(135deg, rgba(55, 231, 255, 0.2), rgba(255, 79, 216, 0.16));
  outline: none;
}

.request-action.danger-action {
  background: rgba(255, 46, 85, 0.16);
  color: #ffdce3;
}

.empty-state {
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.image-button,
.model-card .image-button,
.featured-card .image-button {
  cursor: pointer;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  overscroll-behavior: contain;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  display: grid;
  width: min(1120px, 96vw);
  height: min(82vh, 820px);
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(191, 239, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 11, 11, 0.92);
  box-shadow:
    0 34px 130px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(150%);
  transform: scale(0.965);
  transition: transform 180ms ease;
}

.lightbox.is-open .lightbox-frame {
  transform: scale(1);
}

.lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.close-lightbox {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1001;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 16, 18, 0.82);
  color: #f5fbff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.close-lightbox svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  transition: transform 180ms ease;
}

.close-lightbox:hover {
  transform: scale(1.06);
  border-color: rgba(55, 231, 255, 0.55);
  background: rgba(18, 24, 28, 0.94);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(55, 231, 255, 0.18),
    0 0 24px rgba(55, 231, 255, 0.16);
}

.close-lightbox:hover svg {
  transform: rotate(90deg);
}

.close-lightbox:active {
  transform: scale(0.96);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes lightSweep {
  from {
    transform: translateX(-35vw) rotate(-18deg);
  }
  to {
    transform: translateX(120vw) rotate(-18deg);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 860px) {
  .glass-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-lockup span:last-child {
    display: none;
  }

  .glass-nav nav a {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .hero-section {
    min-height: 84vh;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(4.3rem, 20vw, 7rem);
  }

  .hero-panel {
    margin-bottom: 0;
  }

  .feature-layout,
  .model-showcase,
  .contact-grid,
  .motd-card.has-embed,
  .admin-topline {
    grid-template-columns: 1fr;
  }

  .admin-topline {
    display: grid;
    align-items: start;
  }

  .admin-dashboard-head,
  .admin-title-lockup {
    display: grid;
    align-items: start;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .request-fields {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .glass-nav {
    gap: 8px;
    width: min(370px, calc(100% - 20px));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .glass-nav nav {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
  }

  .glass-nav nav a {
    min-height: 34px;
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  .hero-section {
    min-height: 82vh;
    padding-inline: 16px;
  }

  .hero-content,
  .hero-panel {
    width: min(358px, 100%);
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-panel div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
  }

  .hero-panel div,
  .hero-panel div:last-child {
    min-width: 0;
    padding: 0 10px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-panel div:last-child {
    border-right: 0;
  }

  .stat-value {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.74rem;
    line-height: 1.25;
    text-align: left;
  }

  .section-wrap,
  .contact-section {
    width: min(358px, calc(100% - 28px));
  }

  .featured-card .image-button {
    height: 250px;
  }

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

  .gallery-item {
    height: 220px;
  }

  .close-lightbox {
    top: 10px;
    right: 10px;
  }
}

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