:root {
  --accent: #7f0000;
  --accent-bright: #b10000;
  --page-bg: #050505;
  --panel: rgba(8, 8, 8, .88);
  --panel-border: rgba(190, 52, 52, .34);
  --text: #f3f3f3;
  --muted: #c0b9b9;
  --soft: #8e8585;
  --radius: 18px;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .65) 50%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(0deg, rgba(27, 0, 0, .34), rgba(27, 0, 0, .12)),
    url('/assets/images/join-us-background.png') center center / cover no-repeat fixed;
  background-color: var(--page-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 55%, rgba(127, 0, 0, .08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px clamp(20px, 4vw, 64px) 48px;
}

.public-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 106px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand img {
  width: clamp(112px, 9vw, 150px);
  height: auto;
  object-fit: contain;
  opacity: .96;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .6)) drop-shadow(0 0 22px rgba(127, 0, 0, .18));
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(360px, .88fr);
  align-items: start;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 78px);
}

.join-content { min-width: 0; }

.join-card,
.faq-card {
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--accent-bright);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 15, 15, .94), var(--panel));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(12px);
}

.join-card {
  width: 100%;
  padding: clamp(26px, 4vw, 44px);
}

.faq-card {
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.faq-heading { margin-bottom: 18px; }


.faq-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(27px, 2.5vw, 35px);
  font-weight: 400;
  line-height: 1.08;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .16s ease, background .16s ease;
}

.faq-item[open] {
  border-color: rgba(127, 0, 0, .6);
  background: rgba(127, 0, 0, .08);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 48px 12px 15px;
  color: #f2eeee;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(127, 0, 0, .75);
  border-radius: 7px;
  color: #efb2b2;
  background: rgba(127, 0, 0, .15);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item summary:hover { color: #fff; }

.faq-item p {
  margin: 0;
  padding: 0 15px 16px;
  color: #cbc3c3;
  font-size: 13px;
  line-height: 1.55;
}

.faq-item p strong { color: #fff; }


.member-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid rgba(127, 0, 0, .9);
  border-radius: 10px;
  background: linear-gradient(180deg, #8d0909 0%, #6f0000 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.member-login:hover {
  border-color: #b51b1b;
  background: linear-gradient(180deg, #a00b0b 0%, #7f0000 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .34);
  transform: translateY(-1px);
}

.member-login:active { transform: translateY(0); }

h1 {
  margin: 0;
  font-family: "Gilda Display", Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .015em;
  text-shadow: 0 3px 22px rgba(127, 0, 0, .42);
}

.intro {
  margin-top: 26px;
  color: #e7e3e3;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.58;
}

.intro p { margin: 0 0 9px; }

.intro .lead {
  margin-top: 17px;
  color: #fff;
  font-size: 18px;
}

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

.recruitment-block {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
}

.recruitment-block h2 {
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(127, 0, 0, .58);
  color: #fff;
  font-family: "Gilda Display", Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.recruitment-block ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruitment-block li {
  position: relative;
  padding-left: 17px;
  color: #ded8d8;
  font-size: 14px;
  line-height: 1.45;
}

.recruitment-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(177, 0, 0, .6);
}

.recruitment-block li span { color: var(--soft); }

.closing {
  margin-top: 28px;
  text-align: center;
}

.join-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d76464;
  font-family: Copperplate, "Copperplate Gothic Light", "Palatino Linotype", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.join-mark::before,
.join-mark::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, transparent, rgba(177, 0, 0, .72));
}

.join-mark::after { transform: scaleX(-1); }

.closing p {
  margin: 13px 0 0;
  color: #c9bebe;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}


.reviews-section {
  margin-top: clamp(34px, 5vw, 58px);
  padding: 24px 0 8px;
}

.reviews-heading {
  margin-bottom: 18px;
  padding: 0 4px;
}

.reviews-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviews-scroll 92s linear infinite;
}

.reviews-set {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.review-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  width: clamp(300px, 26vw, 390px);
  min-height: 154px;
  padding: 20px 21px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-top: 2px solid rgba(127, 0, 0, .78);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 15, 15, .94), rgba(8, 8, 8, .88));
  box-shadow: 0 16px 38px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .025);
  backdrop-filter: blur(10px);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(127, 0, 0, .7);
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  box-shadow: 0 0 0 3px rgba(127, 0, 0, .08);
}

.review-copy { min-width: 0; }

.review-stars {
  margin-bottom: 11px;
  color: #d9b74a;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: #e4dfdf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.52;
}

.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.satire-disclaimer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 18px 20px;
  border-top: 1px solid rgba(127, 0, 0, .42);
  color: #8f8f8f;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.satire-disclaimer strong {
  color: #b6b6b6;
  font-weight: 750;
}

@media (max-width: 980px) {
  .join-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
    gap: 24px;
  }

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

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .56) 0%, rgba(0, 0, 0, .84) 38%, rgba(0, 0, 0, .96) 100%),
      url('/assets/images/join-us-background.png') 58% center / cover no-repeat fixed;
  }

  .page-shell { padding: 16px 15px 30px; }
  .public-brand {
    justify-content: space-between;
    min-height: 90px;
    margin-bottom: 12px;
  }
  .brand img { width: 96px; }
  .member-login { min-width: 150px; min-height: 38px; padding: 8px 14px; font-size: 12px; }

  .join-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .join-content { order: 1; }
  .faq-card { order: 2; }

  .join-card,
  .faq-card {
    padding: 24px 20px 26px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
  }

  .recruitment-grid { gap: 12px; margin-top: 24px; }
  .recruitment-block { padding: 18px; }
  .join-mark { gap: 10px; font-size: 14px; letter-spacing: .1em; }
  .faq-item summary { min-height: 50px; }

  .reviews-section { margin-top: 28px; padding-top: 14px; }
  .reviews-heading { text-align: center; }
  .reviews-marquee {
    margin-inline: -15px;
    padding-inline: 15px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }
  .review-card { width: min(86vw, 340px); min-height: 150px; grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .review-avatar { width: 44px; height: 44px; }
  .reviews-track { animation-duration: 76s; }
}


@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .reviews-track { animation: none !important; transform: none !important; }
}
