/* INDIANA RP — showcase landing (cinematic purple / GMod) */
:root {
  --auth-bg: #08060f;
  --auth-bg-2: #12081f;
  --auth-violet: #8b5cf6;
  --auth-violet-bright: #a78bfa;
  --auth-violet-deep: #6d28d9;
  --auth-violet-glow: rgba(139, 92, 246, 0.45);
  --auth-violet-soft: rgba(139, 92, 246, 0.16);
  --auth-magenta: #e879f9;
  --auth-text: #f4f0ff;
  --auth-muted: #a89bc4;
  --auth-font: "Manrope", sans-serif;
  --auth-display: "Syne", "Manrope", sans-serif;
  --auth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

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

body.auth-showcase {
  min-height: 100vh;
  font-family: var(--auth-font);
  color: var(--auth-text);
  background: var(--auth-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

/* ── Stage ── */
.auth-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 70% 40%, rgba(109, 40, 217, 0.38), transparent 58%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(88, 28, 160, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 10%, rgba(167, 139, 250, 0.12), transparent 50%),
    linear-gradient(165deg, #0b0614 0%, #12081f 42%, #07050d 100%);
}

#auth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  contain: strict;
}

.auth-aurora {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 62% 35%, rgba(139, 92, 246, 0.32), transparent 48%),
    radial-gradient(circle at 30% 70%, rgba(76, 29, 149, 0.22), transparent 45%);
  /* Soft gradients only — no large blur (GPU killer) */
  opacity: 0.9;
  animation: auth-aurora 18s ease-in-out infinite alternate;
  will-change: auto;
}

.auth-stage.is-paused .auth-aurora,
.auth-stage.is-paused .auth-cube {
  animation-play-state: paused;
}

.auth-grid {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -5%;
  height: 55%;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(58deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.55), transparent 75%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.55), transparent 75%);
  opacity: 0.55;
}

.auth-shards { position: absolute; inset: 0; }

.auth-cube {
  position: absolute;
  width: 52px;
  height: 60px;
  transform-style: preserve-3d;
  animation: auth-float 10s ease-in-out infinite alternate;
}

.auth-cube > i {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.auth-cube > i:nth-child(1) {
  height: 45%;
  background: linear-gradient(145deg, #2a1848 0%, #161022 100%);
  border: 1px solid rgba(167, 139, 250, 0.28);
  transform: translateY(8%) skewX(-30deg) scaleY(0.58);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.12);
}

.auth-cube > i:nth-child(2) {
  width: 52%;
  height: 62%;
  top: 28%;
  background: linear-gradient(180deg, #1a102c 0%, #0a0614 100%);
  border: 1px solid rgba(139, 92, 246, 0.18);
  transform: skewY(26deg);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.45);
}

.auth-cube > i:nth-child(3) {
  width: 52%;
  height: 62%;
  left: 48%;
  top: 28%;
  background: linear-gradient(200deg, #241636 0%, #0c0816 85%);
  border: 1px solid rgba(167, 139, 250, 0.22);
  transform: skewY(-26deg);
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.auth-cube > i:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 22%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.65), 0 0 22px 4px rgba(196, 181, 253, 0.35);
}

.auth-cube.c1 { width: 64px; height: 74px; top: 18%; right: 12%; animation-duration: 11s; }
.auth-cube.c2 { width: 40px; height: 46px; top: 48%; right: 5%; animation-duration: 13s; animation-direction: alternate-reverse; }
.auth-cube.c3 { width: 52px; height: 60px; bottom: 22%; right: 22%; animation-duration: 12s; opacity: 0.85; }

.auth-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, transparent 30%, rgba(5, 3, 12, 0.55) 100%),
    linear-gradient(to top, rgba(5, 3, 12, 0.75), transparent 35%);
}

.auth-watermark {
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--auth-display);
  font-size: clamp(12rem, 28vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  user-select: none;
  transform: rotate(-8deg);
}

@keyframes auth-aurora {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

@keyframes auth-float {
  from { transform: translateY(0) rotate(-6deg); }
  to { transform: translateY(-18px) rotate(8deg); }
}

@keyframes auth-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes auth-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes auth-cube-drift {
  from { transform: translateY(0) rotate(var(--cube-rot, -12deg)); }
  to { transform: translateY(-14px) rotate(calc(var(--cube-rot, -12deg) + 10deg)); }
}

@keyframes auth-shimmer {
  to { background-position: 220% center; }
}

/* ── Page / Hero ── */
.auth-page {
  position: relative;
  z-index: 10;
}

.auth-hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(32px, 6vh, 64px) clamp(20px, 5vw, 72px) 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.auth-hero-copy {
  max-width: 34rem;
  animation: auth-rise 0.9s var(--auth-ease) both;
}

.auth-kicker {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--auth-violet-bright);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.35);
}

.auth-brand {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12em 0.26em;
  line-height: 0.86;
}

.auth-brand-main {
  font-family: var(--auth-display);
  font-size: clamp(3.5rem, 11.5vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 48px rgba(139, 92, 246, 0.4),
    0 2px 0 rgba(76, 29, 149, 0.35);
}

.auth-brand-sub {
  font-family: var(--auth-display);
  font-size: clamp(2.3rem, 7.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(105deg, #fff 8%, var(--auth-violet-bright) 42%, var(--auth-violet) 68%, #e9d5ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: auth-shimmer 10s linear infinite;
}

.auth-brand--compact .auth-brand-main {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
}

.auth-brand--compact .auth-brand-sub {
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
}

.auth-headline {
  margin: 0 0 14px;
  font-family: var(--auth-display);
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--auth-text);
}

.auth-lead {
  margin: 0 0 30px;
  max-width: 34ch;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--auth-muted);
}

.auth-next-line {
  margin: -12px 0 22px;
  font-size: 0.86rem;
  color: var(--auth-muted);
  word-break: break-all;
}

.auth-next-line strong {
  color: var(--auth-violet-bright);
  font-weight: 700;
}

.auth-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.auth-cta--row { gap: 10px; }

.auth-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  min-width: 148px;
  padding: 0 26px;
  border-radius: 14px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background:
    linear-gradient(180deg, rgba(167, 139, 250, 0.22), transparent 55%),
    linear-gradient(135deg, #6d28d9, #4c1d95 55%, #3b1a78);
  color: #fff;
  font-family: var(--auth-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 14px 36px rgba(76, 29, 149, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.2s var(--auth-ease), box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.auth-discord:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 181, 253, 0.55);
  box-shadow:
    0 18px 42px rgba(109, 40, 217, 0.5),
    0 0 36px rgba(139, 92, 246, 0.28);
  filter: brightness(1.06);
}

.auth-discord:focus-visible {
  outline: 2px solid var(--auth-violet-bright);
  outline-offset: 3px;
}

.auth-discord--ghost {
  background: rgba(16, 10, 28, 0.55);
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.auth-discord--ghost:hover {
  background: var(--auth-violet-soft);
  filter: none;
}

.auth-discord-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.auth-scroll-hint {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 155, 196, 0.55);
  transition: color 0.2s ease;
}

.auth-scroll-hint:hover { color: var(--auth-violet-bright); }

/* ── Hero visual ── */
.auth-hero-visual {
  position: relative;
  min-height: clamp(300px, 52vh, 560px);
  display: grid;
  place-items: center;
  animation: auth-rise 1.05s var(--auth-ease) 0.12s both;
}

.auth-visual-glow {
  position: absolute;
  width: min(82%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(232, 121, 249, 0.2), transparent 42%),
    radial-gradient(circle, rgba(139, 92, 246, 0.48), rgba(76, 29, 149, 0.1) 55%, transparent 72%);
  animation: auth-pulse 7s ease-in-out infinite;
}

.auth-visual-ring {
  position: absolute;
  width: min(74%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow:
    0 0 0 44px rgba(139, 92, 246, 0.035),
    0 0 90px rgba(139, 92, 246, 0.18) inset;
}

.auth-visual-ind {
  position: absolute;
  z-index: 1;
  font-family: var(--auth-display);
  font-size: clamp(4.2rem, 12vw, 7.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.14);
  text-shadow: 0 0 50px rgba(139, 92, 246, 0.25);
  user-select: none;
  pointer-events: none;
  transform: translateY(6%);
}

.auth-emblem {
  position: relative;
  z-index: 3;
  width: min(68%, 340px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(76, 29, 149, 0.4));
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 52%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 48%, #000 52%, transparent 78%);
  pointer-events: none;
  user-select: none;
}

.auth-iso-cube {
  --size: 88px;
  position: absolute;
  z-index: 2;
  width: var(--size);
  height: calc(var(--size) * 1.15);
  transform-style: preserve-3d;
  animation: auth-cube-drift 11s ease-in-out infinite alternate;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.auth-iso-cube .f {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
}

.auth-iso-cube .f.top {
  width: 100%;
  height: 48%;
  background:
    linear-gradient(150deg, rgba(90, 55, 150, 0.35), transparent 55%),
    linear-gradient(145deg, #2e1a4e 0%, #140c24 100%);
  border: 1px solid rgba(196, 181, 253, 0.28);
  transform: translateY(10%) skewX(-30deg) scaleY(0.58);
}

.auth-iso-cube .f.left {
  width: 52%;
  height: 64%;
  top: 30%;
  background: linear-gradient(185deg, #1c1230 0%, #080510 100%);
  border: 1px solid rgba(139, 92, 246, 0.16);
  transform: skewY(26deg);
  box-shadow: inset 4px 0 18px rgba(0, 0, 0, 0.4);
}

.auth-iso-cube .f.right {
  width: 52%;
  height: 64%;
  left: 48%;
  top: 30%;
  background:
    linear-gradient(210deg, rgba(167, 139, 250, 0.12), transparent 40%),
    linear-gradient(200deg, #26163c 0%, #0a0612 90%);
  border: 1px solid rgba(167, 139, 250, 0.24);
  transform: skewY(-26deg);
}

.auth-iso-cube .f.right::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 20%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f8fafc;
  box-shadow:
    0 0 10px 3px rgba(255, 255, 255, 0.7),
    0 0 24px 6px rgba(196, 181, 253, 0.4);
}

.auth-iso-cube.iso-b1 { --size: 100px; --cube-rot: -18deg; top: 10%; left: 8%; animation-duration: 10s; }
.auth-iso-cube.iso-b2 { --size: 70px; --cube-rot: 16deg; top: 22%; right: 6%; animation-duration: 12s; animation-direction: alternate-reverse; }

/* ── Roles strip (Majestic-style accordion) ── */
.sc-roles {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 8px clamp(12px, 2.5vw, 36px) 56px;
  max-width: 1280px;
  overflow: visible;
}

.sc-roles-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-height: 320px;
  height: clamp(280px, 42vh, 380px);
}

.sc-role {
  --role-accent: #a78bfa;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  background: #0c0816;
  overflow: hidden;
  cursor: default;
  outline: none;
  isolation: isolate;
  transition:
    flex 0.35s var(--auth-ease),
    transform 0.35s var(--auth-ease),
    border-color 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.35s ease;
}

.sc-role-fill {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 6, 16, 0.15) 40%, rgba(8, 6, 16, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 50% 18%, color-mix(in srgb, var(--role-accent) 42%, transparent), transparent 62%),
    linear-gradient(155deg, color-mix(in srgb, var(--role-accent) 28%, #1a102c) 0%, #0a0614 55%, #05030a 100%);
  transition: opacity 0.35s ease, transform 0.35s var(--auth-ease);
}

/* Continuous Majestic-style wordmark: same text in every panel, offset via --wm-x/--wm-w */
.sc-role-wm {
  position: absolute;
  top: 4%;
  left: 0;
  z-index: 1;
  width: var(--wm-w, 100%);
  transform: translate3d(var(--wm-x, 0px), 0, 0);
  font-family: var(--auth-display);
  font-size: clamp(4.8rem, 12.5vw, 9.25rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.75px rgba(255, 255, 255, 0.52);
  paint-order: stroke fill;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.sc-role-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px 20px;
  text-align: center;
}

.sc-role-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 6, 16, 0.55);
  border: 1px solid color-mix(in srgb, var(--role-accent) 45%, transparent);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 0 20px color-mix(in srgb, var(--role-accent) 22%, transparent);
  transition: transform 0.35s var(--auth-ease), box-shadow 0.35s ease;
}

.sc-role-title {
  margin: 0;
  font-family: var(--auth-display);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  transition: letter-spacing 0.3s ease, font-size 0.3s ease;
}

.sc-role-desc {
  margin: 0;
  max-width: 16ch;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(244, 240, 255, 0.72);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--auth-ease),
    max-height 0.35s ease;
}

/* Dim siblings when any role/CTA is hovered or focused */
.sc-roles-track:has(.sc-role:hover) .sc-role:not(:hover),
.sc-roles-track:has(.sc-role.is-focus) .sc-role:not(.is-focus):not(:hover) {
  opacity: 0.45;
  transform: scale(0.97);
}

.sc-role:hover,
.sc-role.is-focus {
  flex: 1.85 1 0;
  z-index: 3;
  transform: translateY(-10px) scale(1.02);
  border-color: color-mix(in srgb, var(--role-accent) 65%, #fff);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 28px color-mix(in srgb, var(--role-accent) 28%, transparent);
  opacity: 1;
}

.sc-role:hover .sc-role-fill,
.sc-role.is-focus .sc-role-fill {
  transform: scale(1.06);
}

.sc-role:hover .sc-role-ico,
.sc-role.is-focus .sc-role-ico {
  transform: scale(1.1);
  box-shadow: 0 0 32px color-mix(in srgb, var(--role-accent) 45%, transparent);
}

.sc-role:hover .sc-role-title,
.sc-role.is-focus .sc-role-title {
  letter-spacing: 0.14em;
}

.sc-role:hover .sc-role-desc,
.sc-role.is-focus .sc-role-desc {
  opacity: 1;
  max-height: 48px;
  transform: none;
}

.sc-role:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--role-accent);
}

/* Center CTA */
.sc-role--cta {
  --role-accent: #e879f9;
  flex: 1.15 1 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  background: linear-gradient(165deg, #e879f9 0%, #a21caf 40%, #6d28d9 100%);
  box-shadow: 0 16px 36px rgba(168, 85, 247, 0.38);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.sc-role--cta .sc-role-fill,
.sc-role--cta .sc-role-body {
  display: none;
}

.sc-role--cta .sc-role-wm {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.38);
}

.sc-role-cta-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.28), transparent 55%);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--auth-ease);
}

.sc-role--cta:hover,
.sc-role--cta.is-focus,
.sc-role--cta:focus-visible {
  flex: 1.55 1 0;
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 24px 52px rgba(192, 38, 211, 0.55),
    0 0 40px rgba(232, 121, 249, 0.45);
  animation: sc-cta-pulse 1.4s ease-in-out infinite;
}

.sc-role--cta:hover .sc-role-cta-glow,
.sc-role--cta.is-focus .sc-role-cta-glow {
  opacity: 1;
  transform: scale(1.15);
}

.sc-role--cta:hover .sc-role-play,
.sc-role--cta.is-focus .sc-role-play {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 255, 255, 0.35);
}

@keyframes sc-cta-pulse {
  0%, 100% { box-shadow: 0 24px 52px rgba(192, 38, 211, 0.55), 0 0 40px rgba(232, 121, 249, 0.4); }
  50% { box-shadow: 0 28px 60px rgba(192, 38, 211, 0.7), 0 0 56px rgba(232, 121, 249, 0.55); }
}

.sc-role-play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: #c026d3;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--auth-ease), box-shadow 0.3s ease;
}

.sc-role-play .fa-play { margin-left: 3px; }

.sc-role-cta-text {
  position: relative;
  z-index: 2;
  font-family: var(--auth-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.sc-role-cta-hint {
  position: relative;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Sections ── */
.auth-section {
  position: relative;
  z-index: 10;
  padding: 48px clamp(20px, 5vw, 72px) 24px;
}

.auth-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.auth-section-inner--wide {
  max-width: 1120px;
}

.auth-section-kicker {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--auth-violet-bright);
}

.auth-section-title {
  margin: 0 0 12px;
  font-family: var(--auth-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.auth-section-lead {
  margin: 0 0 32px;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--auth-muted);
}

.auth-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.auth-steps--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.auth-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.16);
  background: rgba(12, 8, 24, 0.72);
}

.auth-steps--grid .auth-step {
  grid-template-columns: 1fr;
  gap: 10px;
}

.auth-step-num {
  font-family: var(--auth-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--auth-magenta);
}

.auth-step-body h3 {
  margin: 0 0 8px;
  font-family: var(--auth-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.auth-step-body p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--auth-muted);
}

.auth-text-link {
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--auth-violet-bright);
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}

.auth-text-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.auth-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.16);
  background: rgba(12, 8, 24, 0.5);
  transition: border-color 0.2s ease, transform 0.2s var(--auth-ease), background 0.2s ease;
}

a.auth-feature:hover {
  border-color: rgba(196, 181, 253, 0.4);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.auth-feature-label {
  font-family: var(--auth-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
}

.auth-feature-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--auth-muted);
}

/* ── FAQ grid ── */
.auth-section--faq { padding-bottom: 64px; }

.sc-faq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.sc-faq-head .auth-section-title { margin-bottom: 0; }
.sc-faq-head .auth-section-kicker { margin-bottom: 8px; }

.sc-ghost-btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sc-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.sc-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sc-faq {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121018;
  min-height: 168px;
}

.sc-faq h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}

.sc-faq p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a8a0b8;
}

.sc-faq a,
.sc-faq em,
.sc-faq strong {
  color: var(--auth-magenta);
  font-style: normal;
  font-weight: 700;
}

.sc-faq a:hover { text-decoration: underline; }

/* ── Footer ── */
.sc-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 12, 0.88);
  padding: 48px clamp(20px, 5vw, 56px) 40px;
}

.sc-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

.sc-footer-logo {
  display: inline-block;
  font-family: var(--auth-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.sc-footer-logo span {
  margin-left: 0.2em;
  color: var(--auth-violet-bright);
}

.sc-footer-copy {
  margin: 14px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #7d738f;
  max-width: 28ch;
}

.sc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-footer-col h4 {
  margin: 0 0 4px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.sc-footer-col a {
  font-size: 0.9rem;
  color: #8f869e;
  transition: color 0.15s ease;
}

.sc-footer-col a:hover { color: var(--auth-violet-bright); }

/* ── Denied ── */
.auth-hero--denied {
  grid-template-columns: 1fr;
  max-width: 720px;
  min-height: 100vh;
}

.auth-showcase--denied .auth-aurora { opacity: 0.7; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sc-roles-track { height: auto; min-height: 0; flex-wrap: wrap; }
  .sc-role-wm { display: none; }
  .sc-role {
    flex: 1 1 calc(25% - 8px);
    min-height: 220px;
  }
  .sc-role--cta {
    flex: 1 1 100%;
    min-height: 160px;
    order: -1;
  }
  .sc-role:nth-child(n + 6):not(.sc-role--cta) { display: none; }
  .sc-roles-track:has(.sc-role:hover) .sc-role:not(:hover),
  .sc-roles-track:has(.sc-role.is-focus) .sc-role:not(.is-focus):not(:hover) {
    opacity: 1;
    transform: none;
  }
  .sc-role:hover,
  .sc-role.is-focus {
    flex: 1 1 calc(25% - 8px);
    transform: translateY(-6px);
  }
  .sc-role--cta:hover,
  .sc-role--cta.is-focus {
    flex: 1 1 100%;
  }
  .sc-role-desc {
    opacity: 1;
    max-height: 48px;
    transform: none;
  }
}

@media (max-width: 900px) {
  .auth-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 32px;
  }

  .auth-hero-visual {
    order: -1;
    min-height: 260px;
  }

  .auth-visual-ind { font-size: 3.6rem; }
  .auth-emblem { width: min(58%, 260px); }

  .auth-cube.c3 { display: none; }

  .auth-steps--grid,
  .sc-faq-grid,
  .auth-features {
    grid-template-columns: 1fr;
  }

  .sc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sc-role {
    flex: 1 1 calc(50% - 8px);
    min-height: 200px;
  }
  .sc-role:hover,
  .sc-role.is-focus {
    flex: 1 1 calc(50% - 8px);
  }
  .sc-role:nth-child(n + 5):not(.sc-role--cta) { display: none; }
  .sc-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .auth-hero { padding-inline: 16px; }
  .auth-section { padding-inline: 16px; }
  .auth-lead { font-size: 0.95rem; }
  .auth-discord {
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 0.92rem;
  }
  .auth-cta--row { flex-direction: column; align-items: stretch; }
  .auth-cta--row .auth-discord { width: 100%; }
  .auth-iso-cube.iso-b1 { --size: 72px; }
  .auth-iso-cube.iso-b2 { --size: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .auth-aurora,
  .auth-cube,
  .auth-iso-cube,
  .auth-brand-sub,
  .auth-visual-glow,
  .auth-hero-copy,
  .auth-hero-visual,
  .sc-role--cta:hover,
  .sc-role--cta.is-focus {
    animation: none;
  }

  .auth-discord,
  .sc-role,
  .sc-role--cta,
  .auth-feature,
  .sc-role-desc,
  .sc-role-ico,
  .sc-role-fill {
    transition: none;
  }
}
