:root {
  --bg: #030807;
  --panel: rgba(7, 15, 15, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --stroke: rgba(0, 255, 166, 0.2);
  --stroke-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f7f5;
  --muted: #a1b0aa;
  --green: #18f39a;
  --green-soft: #7ef7c6;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --page-max: 1380px;
  --page-gutter: 16px;
  --page-bottom: 18px;
  --section-pad: 28px;
  --card-pad: 26px;
  --layout-gap: 34px;
  --cluster-gap: 18px;
  --topbar-gap: 20px;
  --topbar-min-height: 84px;
  --button-height: 48px;
  --button-min-width: 138px;
  --hero-title-max: 12.6ch;
  --hero-proof-columns: auto auto auto auto;
  --stats-columns: repeat(4, 1fr);
  --value-columns: repeat(3, minmax(0, 1fr));
  --faq-columns: 0.88fr 1.12fr;
  --results-metric-columns: 1.3fr 1fr 1fr 1fr;
  --results-grid-columns: 1.08fr 0.92fr;
  --results-grid-lower-columns: 1fr 0.92fr;
  --safe-left: max(var(--page-gutter), env(safe-area-inset-left));
  --safe-right: max(var(--page-gutter), env(safe-area-inset-right));
  --safe-bottom: max(20px, env(safe-area-inset-bottom));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #040707;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 8, 7, 0.42), rgba(3, 8, 7, 0.72)),
    url("images/hero.png");
  background-size:
    cover,
    cover;
  background-position:
    center,
    center;
  background-repeat: no-repeat;
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44vh;
  background:
    radial-gradient(circle at 8% 80%, rgba(24, 243, 154, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 26% 74%, rgba(24, 243, 154, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 68%, rgba(24, 243, 154, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 72%, rgba(24, 243, 154, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 78%, rgba(24, 243, 154, 0.9) 0 2px, transparent 3px);
  opacity: 0.75;
}

.page-bg::before {
  clip-path: polygon(0 70%, 10% 68%, 18% 74%, 28% 63%, 38% 70%, 50% 58%, 64% 66%, 74% 55%, 86% 62%, 100% 48%, 100% 100%, 0 100%);
  border-top: 1px solid rgba(24, 243, 154, 0.35);
  box-shadow: 0 -10px 40px rgba(24, 243, 154, 0.14);
}

.page-bg::after {
  height: 28vh;
  opacity: 0.52;
  clip-path: polygon(0 82%, 12% 74%, 24% 82%, 36% 70%, 48% 80%, 62% 68%, 78% 78%, 100% 66%, 100% 100%, 0 100%);
  border-top: 1px solid rgba(24, 243, 154, 0.18);
}

.ambient {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.24;
}

.ambient-left {
  top: 4rem;
  left: -10rem;
  background: #0c5f43;
}

.ambient-right {
  top: 10rem;
  right: -10rem;
  background: #14b471;
}

.page-shell {
  position: relative;
  width: min(var(--page-max), calc(100% - (var(--safe-left) + var(--safe-right))));
  margin: 0 auto;
  padding: 0 0 calc(var(--page-bottom) + var(--safe-bottom));
}

.auth-page .page-bg,
.auth-bg {
  background-size: cover, cover !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
}

.auth-page .page-bg::before {
  height: 100%;
  inset: 0;
  clip-path: none;
  border-top: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 5, 0.48) 0%, rgba(2, 6, 5, 0.18) 38%, rgba(2, 6, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(1, 4, 4, 0.16) 0%, rgba(1, 4, 4, 0.08) 32%, rgba(1, 4, 4, 0.28) 100%),
    radial-gradient(circle at 18% 20%, rgba(24, 243, 154, 0.06) 0, transparent 22%),
    radial-gradient(circle at 82% 80%, rgba(24, 243, 154, 0.05) 0, transparent 20%);
  opacity: 0.88;
}

.auth-page .page-bg::after {
  display: block;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0 38%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0.24) 100%);
  opacity: 0.7;
  clip-path: none;
  border-top: 0;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--topbar-gap);
  min-height: var(--topbar-min-height);
  padding: 2px 0 6px;
  margin-bottom: 0;
}

.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  bottom: 4px;
  pointer-events: none;
}

.topbar::after {
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(8, 64, 8, 0) 0%,
    rgba(8, 64, 8, 0.015) 8%,
    rgba(16, 96, 16, 0.04) 18%,
    rgba(16, 96, 16, 0.07) 30%,
    rgba(32, 112, 16, 0.1) 40%,
    rgba(48, 144, 32, 0.16) 50%,
    rgba(32, 112, 16, 0.1) 60%,
    rgba(16, 96, 16, 0.07) 70%,
    rgba(16, 96, 16, 0.04) 82%,
    rgba(8, 64, 8, 0.015) 92%,
    rgba(8, 64, 8, 0) 100%
  );
}

.topbar::before {
  left: 7%;
  right: 7%;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(16, 96, 16, 0) 0%,
    rgba(16, 96, 16, 0.14) 8%,
    rgba(32, 112, 16, 0.24) 18%,
    rgba(48, 144, 32, 0.4) 32%,
    rgba(96, 176, 64, 0.92) 50%,
    rgba(48, 144, 32, 0.4) 68%,
    rgba(32, 112, 16, 0.24) 82%,
    rgba(16, 96, 16, 0.14) 92%,
    rgba(16, 96, 16, 0) 100%
  );
  box-shadow: 0 0 14px rgba(64, 160, 48, 0.24), 0 0 28px rgba(16, 96, 16, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
  margin-top: 0;
  filter: drop-shadow(0 0 18px rgba(24, 243, 154, 0.22));
}

.brand-titles {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 0;
  margin-top: 0;
  margin-left: -2px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(118deg, #d9ffb4 0%, #9af55d 18%, #59c82d 42%, #2d8f1f 68%, #153f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 14px rgba(89, 200, 45, 0.12);
}

.brand-subtitle {
  color: rgba(56, 104, 63, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.auth-page .brand-name {
  background: linear-gradient(118deg, #f2ffd7 0%, #bbff84 20%, #77df48 46%, #3da72b 70%, #1d5717 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(89, 200, 45, 0.18);
}

.auth-page .brand-subtitle {
  color: rgba(196, 230, 198, 0.82);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.topbar-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 16px);
  justify-content: end;
  padding-top: 0;
}

.mobile-account {
  position: relative;
  display: none;
}

.header-controls {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 18;
}

.language-switcher {
  position: relative;
  z-index: 14;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 86px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(126, 247, 198, 0.34);
  border-radius: 999px;
  color: #dcffef;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 255, 239, 0.16), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(24, 243, 154, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(7, 24, 20, 0.86), rgba(3, 10, 10, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.07),
    inset 0 -14px 24px rgba(24, 243, 154, 0.07),
    0 0 0 5px rgba(24, 243, 154, 0.035),
    0 16px 36px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(24, 243, 154, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-switcher.is-open .language-button {
  transform: translateY(-1px);
  border-color: rgba(196, 255, 226, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.1),
    inset 0 -14px 24px rgba(24, 243, 154, 0.1),
    0 0 0 7px rgba(24, 243, 154, 0.055),
    0 18px 40px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(24, 243, 154, 0.22);
}

.language-button:focus-visible {
  outline: 3px solid rgba(126, 247, 198, 0.34);
  outline-offset: 4px;
}

.language-globe,
.language-globe svg {
  width: 22px;
  height: 22px;
}

.language-globe {
  display: grid;
  place-items: center;
  color: #86ffd0;
}

.language-globe svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(24, 243, 154, 0.28));
}

.language-code {
  min-width: 2.4ch;
  text-align: center;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 32;
  display: grid;
  gap: 7px;
  width: min(230px, calc(100vw - 34px));
  padding: 10px;
  border: 1px solid rgba(126, 247, 198, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 0%, rgba(24, 243, 154, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 20, 18, 0.98), rgba(3, 10, 10, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(24, 243, 154, 0.13);
}

.language-menu[hidden] {
  display: none;
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 26px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(126, 247, 198, 0.22);
  border-top: 1px solid rgba(126, 247, 198, 0.22);
  background: rgba(7, 20, 18, 0.98);
  transform: rotate(45deg);
}

.language-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  color: #eefaf4;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.language-option span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: #86ffd0;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(24, 243, 154, 0.08);
}

.language-option strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  border-color: rgba(126, 247, 198, 0.3);
  background:
    linear-gradient(135deg, rgba(24, 243, 154, 0.16), rgba(61, 167, 43, 0.1)),
    rgba(255, 255, 255, 0.045);
}

.user-login-link {
  position: relative;
  grid-column: 3;
  justify-self: end;
  display: none;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  color: #d7ffec;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(126, 247, 198, 0.46);
  background:
    radial-gradient(circle at 34% 22%, rgba(220, 255, 239, 0.2), transparent 28%),
    radial-gradient(circle at 68% 76%, rgba(24, 243, 154, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 24, 20, 0.88), rgba(3, 10, 10, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.08),
    inset 0 -16px 26px rgba(24, 243, 154, 0.08),
    0 0 0 7px rgba(24, 243, 154, 0.05),
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(24, 243, 154, 0.2);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mobile-account-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 30;
  width: min(270px, calc(100vw - 34px));
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(126, 247, 198, 0.28);
  background:
    radial-gradient(circle at 80% 0%, rgba(24, 243, 154, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 20, 18, 0.98), rgba(3, 10, 10, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(24, 243, 154, 0.14);
}

.mobile-account-menu[hidden] {
  display: none;
}

.mobile-account-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(126, 247, 198, 0.22);
  border-top: 1px solid rgba(126, 247, 198, 0.22);
  background: rgba(7, 20, 18, 0.98);
  transform: rotate(45deg);
}

.mobile-account-menu-body {
  position: relative;
  display: grid;
  gap: 8px;
}

.mobile-account-user {
  display: grid;
  gap: 2px;
  padding: 10px 12px 12px;
  border-radius: 12px;
  color: #eff5f1;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-account-user strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.mobile-account-user small {
  color: rgba(214, 233, 222, 0.7);
  text-transform: capitalize;
}

.mobile-account-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #f2fff8;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.mobile-account-action.primary {
  border: 1px solid rgba(31, 234, 144, 0.58);
  background: linear-gradient(180deg, rgba(20, 151, 90, 0.94), rgba(6, 111, 62, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mobile-account-action.secondary,
.mobile-account-action.danger {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.mobile-account-action.danger {
  color: #d9fff0;
}

.user-login-link::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(24, 243, 154, 0.14);
  pointer-events: none;
}

.user-login-link::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(24, 243, 154, 0.18), transparent 66%);
  filter: blur(10px);
}

.user-login-link:hover,
.user-login-link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(196, 255, 226, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(238, 255, 247, 0.12),
    inset 0 -16px 26px rgba(24, 243, 154, 0.12),
    0 0 0 9px rgba(24, 243, 154, 0.07),
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(24, 243, 154, 0.3);
}

.user-login-link:focus-visible {
  outline: 3px solid rgba(126, 247, 198, 0.38);
  outline-offset: 5px;
}

.user-login-icon,
.user-login-icon svg {
  display: block;
}

.user-login-icon {
  width: 42px;
  height: 42px;
}

.user-login-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(24, 243, 154, 0.5))
    drop-shadow(0 0 18px rgba(126, 247, 198, 0.16));
}

.user-icon-ring {
  stroke: rgba(126, 247, 198, 0.55);
  stroke-width: 1.8;
}

.user-icon-head {
  stroke-width: 2.7;
}

.user-icon-body {
  stroke-width: 2.9;
}

.user-icon-spark {
  fill: rgba(24, 243, 154, 0.22);
  stroke-width: 1.8;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  min-height: calc(100dvh - 150px);
  padding: clamp(24px, 4vw, 36px) 0 24px;
}

.auth-copy {
  max-width: 620px;
  padding: 22px 24px 22px 0;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(3, 9, 8, 0.22), rgba(3, 9, 8, 0.04));
}

.auth-title {
  margin: 22px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: rgba(248, 250, 248, 0.98);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.auth-text {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #e1ebe5;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.auth-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-point {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(6, 12, 12, 0.82);
  box-shadow: var(--shadow);
}

.auth-point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(24, 243, 154, 0.8);
}

.auth-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 540px;
  justify-self: end;
  width: 100%;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(4, 10, 10, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(24, 243, 154, 0.12),
    0 0 48px rgba(24, 243, 154, 0.1),
    var(--shadow);
  backdrop-filter: blur(8px);
}

.auth-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 16%, rgba(116, 255, 171, 0.18), transparent 26%),
    radial-gradient(circle at 88% 86%, rgba(61, 196, 110, 0.15), transparent 24%);
  filter: blur(8px);
  z-index: 0;
}

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

.auth-card h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.auth-card-text {
  margin: 12px 0 0;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.auth-field {
  display: grid;
  gap: 10px;
}

.auth-field span {
  font-size: 0.94rem;
  font-weight: 600;
  color: #e6efea;
}

.auth-field input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(7, 15, 15, 0.74);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-field input:focus {
  border-color: rgba(24, 243, 154, 0.42);
  box-shadow: 0 0 0 4px rgba(24, 243, 154, 0.08);
  background: rgba(8, 18, 16, 0.92);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.auth-submit {
  min-height: 62px;
  border: 1px solid rgba(24, 243, 154, 0.55);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(39, 255, 171, 0.34), rgba(7, 118, 68, 0.94));
  color: #f8fff9;
  font: inherit;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 28px rgba(24, 243, 154, 0.22);
  cursor: pointer;
}

.auth-link {
  color: var(--green-soft);
  text-decoration: none;
}

.auth-link.strong {
  font-weight: 700;
}

.auth-switch {
  margin: 18px 0 0;
  color: var(--muted);
}

.auth-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8e2;
  line-height: 1.6;
}

.auth-status.is-error {
  border-color: rgba(255, 129, 129, 0.28);
  background: rgba(99, 20, 20, 0.24);
  color: #ffd3d3;
}

.auth-status.is-success {
  border-color: rgba(24, 243, 154, 0.24);
  background: rgba(8, 46, 30, 0.28);
  color: #d6ffec;
}

.social-auth {
  margin-top: 22px;
}

.social-auth-divider {
  position: relative;
  margin-bottom: 14px;
  text-align: center;
}

.social-auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.social-auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(4, 10, 10, 0.92);
}

.social-auth-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 16, 15, 0.82);
  color: #f4f7f5;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.social-auth-button:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 243, 154, 0.22);
  background: rgba(10, 20, 18, 0.92);
}

.social-auth-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.social-auth-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.social-auth-button.google .social-auth-icon {
  color: #8fd1ff;
}

.social-auth-button.apple .social-auth-icon {
  color: #f2f5f3;
}

.header-button,
.eyebrow-pill,
.tag-chip,
.upload-card,
.stat-spotlight,
.result-card,
.result-panel {
  border: 1px solid var(--stroke-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--button-min-width);
  min-height: var(--button-height);
  padding: 0 clamp(16px, 2vw, 20px);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  font-size: 0.98rem;
  text-align: center;
}

.header-button.primary {
  border-color: rgba(24, 243, 154, 0.55);
  background: linear-gradient(180deg, rgba(24, 243, 154, 0.26), rgba(10, 73, 47, 0.85));
  box-shadow: inset 0 0 0 1px rgba(24, 243, 154, 0.3), 0 0 28px rgba(24, 243, 154, 0.24);
}

.support-fab {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #b8ffe3;
  border: 1px solid rgba(24, 243, 154, 0.44);
  background:
    radial-gradient(circle at 34% 24%, rgba(184, 255, 227, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 28, 24, 0.88), rgba(4, 13, 12, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(184, 255, 227, 0.08),
    0 0 0 8px rgba(24, 243, 154, 0.05),
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(24, 243, 154, 0.22);
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-fab::before,
.support-fab::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.support-fab::before {
  inset: -8px;
  border: 1px solid rgba(24, 243, 154, 0.18);
  opacity: 0.74;
}

.support-fab::after {
  inset: 9px;
  background: radial-gradient(circle, rgba(24, 243, 154, 0.18), transparent 66%);
  filter: blur(10px);
  z-index: -1;
}

.support-fab:hover,
.support-fab:focus-visible {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(126, 247, 198, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(184, 255, 227, 0.14),
    0 0 0 10px rgba(24, 243, 154, 0.07),
    0 22px 52px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(24, 243, 154, 0.32);
}

.support-fab:focus-visible {
  outline: 3px solid rgba(126, 247, 198, 0.4);
  outline-offset: 5px;
}

.support-fab-icon,
.support-fab svg {
  display: block;
}

.support-fab-icon {
  width: 42px;
  height: 42px;
}

.support-fab svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(24, 243, 154, 0.58));
}

.support-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 243, 154, 0.22);
  background: rgba(5, 13, 12, 0.9);
  color: #effff8;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translate(6px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.support-fab:hover .support-fab-label,
.support-fab:focus-visible .support-fab-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.session-badge {
  display: grid;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 12, 0.78);
  color: #eff5f1;
}

.session-badge-name {
  font-weight: 700;
}

.session-badge small {
  color: var(--muted);
  text-transform: capitalize;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "intro upload"
    "support upload";
  gap: var(--layout-gap);
  align-items: start;
  margin-top: clamp(28px, 6vw, 58px);
}

.hero-intro {
  grid-area: intro;
}

.upload-card {
  grid-area: upload;
}

.hero-support {
  grid-area: support;
}

.hero-intro,
.hero-support {
  min-width: 0;
}

.eyebrow-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(24, 243, 154, 0.8);
}

.hero-title,
.upload-card-head h2,
.results-top h2,
.result-card h3,
.panel-head h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.hero-title {
  max-width: var(--hero-title-max);
  display: grid;
  gap: 0.02em;
  margin-top: 26px;
  padding-bottom: 0.12em;
}

.hero-line {
  display: block;
  font-family: "Playfair Display", serif;
  line-height: 0.92;
  letter-spacing: -0.046em;
}

.hero-line-top {
  color: rgba(247, 250, 248, 0.98);
  white-space: nowrap;
  font-size: clamp(4rem, 7.4vw, 6.15rem);
  font-weight: 700;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.hero-line-main,
.hero-line-bottom {
  font-size: clamp(4.35rem, 8.4vw, 6.95rem);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(118deg, #d9ffb4 0%, #9af55d 18%, #59c82d 42%, #2d8f1f 68%, #153f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 34px rgba(89, 200, 45, 0.16);
}

.hero-line-bottom {
  margin-top: -0.04em;
  width: fit-content;
  position: relative;
  padding-right: 0.08em;
  padding-bottom: 0.06em;
}

.hero-line-bottom::after {
  display: none;
}

html[data-language="en"] .hero-title,
html[data-language="pt-BR"] .hero-title,
html[data-language="es"] .hero-title {
  max-width: 14.5ch;
  gap: 0.04em;
  padding-bottom: 0.38em;
  overflow: visible;
}

html[data-language="en"] .hero-line,
html[data-language="pt-BR"] .hero-line,
html[data-language="es"] .hero-line {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
  padding-bottom: 0.07em;
}

html[data-language="en"] .hero-line-top,
html[data-language="pt-BR"] .hero-line-top,
html[data-language="es"] .hero-line-top {
  font-size: clamp(3rem, 6.45vw, 5.05rem);
  white-space: normal;
}

html[data-language="en"] .hero-line-main,
html[data-language="en"] .hero-line-bottom,
html[data-language="pt-BR"] .hero-line-main,
html[data-language="pt-BR"] .hero-line-bottom,
html[data-language="es"] .hero-line-main,
html[data-language="es"] .hero-line-bottom {
  font-size: clamp(3.15rem, 6.75vw, 5.35rem);
}

html[data-language="pt-BR"] .hero-title,
html[data-language="es"] .hero-title {
  max-width: 15.4ch;
}

html[data-language="pt-BR"] .hero-line,
html[data-language="es"] .hero-line {
  line-height: 1.04;
}

.hero-text {
  margin: 22px 0 18px;
  font-size: 1.1rem;
  color: #e5efea;
}

.hero-tags,
.hero-proof,
.results-metrics,
.results-grid,
.insight-grid,
.member-stats,
.hourly-chart {
  display: grid;
  gap: var(--cluster-gap);
}

.hero-tags {
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  margin-bottom: 22px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
}

.tag-check {
  color: var(--green);
  font-weight: 800;
}

.cta-button,
.upload-pick,
.analyze-button,
.export-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

.cta-button.primary,
.upload-pick {
  color: #f8fff9;
  border: 1px solid rgba(24, 243, 154, 0.55);
  background: linear-gradient(180deg, rgba(39, 255, 171, 0.34), rgba(7, 118, 68, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 28px rgba(24, 243, 154, 0.22);
}

.cta-button.secondary,
.analyze-button,
.export-button {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 15, 15, 0.78);
}

.hero-proof {
  align-items: center;
  grid-template-columns: var(--hero-proof-columns);
  width: fit-content;
  gap: 14px;
  margin-top: 8px;
}

.avatars {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.avatar {
  width: 52px;
  height: 52px;
  margin-right: -12px;
  display: block;
  border-radius: 50%;
  border: 2px solid #08110f;
  object-fit: cover;
  background: #10201a;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.proof-meta {
  color: var(--muted);
}

.proof-text {
  font-size: 1rem;
}

.upload-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  padding: var(--card-pad);
  box-shadow:
    0 0 0 1px rgba(24, 243, 154, 0.28),
    0 0 40px rgba(24, 243, 154, 0.18),
    var(--shadow);
}

.upload-card::before,
.upload-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 0;
}

.upload-card::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(119, 255, 172, 0.16) 0, rgba(52, 181, 108, 0.1) 14%, rgba(8, 28, 20, 0) 34%),
    radial-gradient(circle at 88% 88%, rgba(64, 195, 109, 0.14) 0, rgba(25, 99, 55, 0.08) 16%, rgba(8, 28, 20, 0) 36%);
  filter: blur(4px);
}

.upload-card::after {
  inset: 1px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 0% 0%, rgba(168, 255, 207, 0.06), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(81, 221, 132, 0.06), transparent 30%);
}

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

.upload-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.upload-card-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.mini-format {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 243, 154, 0.4);
  color: var(--green-soft);
}

.dropzone {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(126, 247, 198, 0.42);
  background: rgba(5, 12, 12, 0.7);
  text-align: center;
  margin-bottom: 18px;
}

.dropzone.dragover {
  box-shadow: 0 0 0 1px rgba(24, 243, 154, 0.32), 0 0 30px rgba(24, 243, 154, 0.16);
}

.dropzone-icon {
  width: 56px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(24, 243, 154, 0.5);
  margin-bottom: 18px;
  position: relative;
}

.dropzone-icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 11px;
  width: 0;
  height: 0;
  border-left: 12px solid var(--green-soft);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.dropzone h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.dropzone-sep,
.picked-file,
.status-text {
  color: var(--muted);
}

.upload-pick {
  width: min(100%, 430px);
  border-radius: 16px;
}

.analyze-button {
  width: 100%;
  min-height: 64px;
  border-radius: 16px;
}

.analyze-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-stats {
  display: grid;
  grid-template-columns: var(--stats-columns);
  gap: 10px;
  margin: 16px 0 12px;
}

.stat-spotlight {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  border-radius: 18px;
  padding: 14px 16px 12px;
  border-color: rgba(24, 243, 154, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 255, 197, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(24, 243, 154, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(17, 44, 32, 0.94), rgba(5, 14, 13, 0.94) 58%, rgba(3, 9, 8, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(193, 255, 225, 0.08),
    inset 0 0 0 1px rgba(24, 243, 154, 0.1),
    0 18px 48px rgba(1, 10, 7, 0.48),
    0 0 32px rgba(24, 243, 154, 0.12),
    var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stat-spotlight::before,
.stat-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stat-spotlight::before {
  inset: auto -12% -44% 40%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 243, 154, 0.22) 0%, rgba(24, 243, 154, 0.05) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.95;
}

.stat-spotlight::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(24, 243, 154, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.stat-spotlight:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 255, 191, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(214, 255, 233, 0.12),
    inset 0 0 0 1px rgba(24, 243, 154, 0.16),
    0 26px 60px rgba(1, 12, 8, 0.56),
    0 0 42px rgba(24, 243, 154, 0.18),
    var(--shadow);
}

.stat-head {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-spotlight strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 0.96;
  text-shadow: 0 0 18px rgba(24, 243, 154, 0.08);
}

.stat-caption {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.mini-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 38px;
  margin-top: 9px;
}

.mini-bars span {
  width: 11px;
  background: linear-gradient(180deg, rgba(164, 255, 220, 0.28), rgba(24, 243, 154, 0.96));
  border-radius: 4px 4px 0 0;
  box-shadow:
    0 0 12px rgba(24, 243, 154, 0.18),
    0 0 22px rgba(24, 243, 154, 0.12);
}

.mini-bars span:nth-child(1) { height: 14px; }
.mini-bars span:nth-child(2) { height: 19px; }
.mini-bars span:nth-child(3) { height: 27px; }
.mini-bars span:nth-child(4) { height: 36px; }
.mini-bars span:nth-child(5) { height: 24px; }
.mini-bars span:nth-child(6) { height: 42px; }

.active-user {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-avatar {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #11211b;
  border: 3px solid rgba(160, 255, 213, 0.18);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(24, 243, 154, 0.12);
}

.active-user small {
  color: var(--muted);
}

.accuracy-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accuracy-ring {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    rgba(24, 243, 154, 0) 0deg,
    rgba(79, 255, 197, 0.98) 0deg,
    rgba(34, 244, 166, 0.98) 230deg,
    rgba(24, 243, 154, 0.9) 349.2deg,
    rgba(255, 255, 255, 0.06) 349.2deg 360deg
  );
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(24, 243, 154, 0.1);
}

.accuracy-ring::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(36, 255, 174, 0.1), rgba(24, 243, 154, 0.015) 42%, transparent 72%),
    linear-gradient(180deg, rgba(8, 18, 16, 1), rgba(5, 14, 13, 1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.accuracy-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    rgba(255, 255, 255, 0.16) 0deg,
    rgba(255, 255, 255, 0) 42deg,
    rgba(255, 255, 255, 0) 220deg,
    rgba(255, 255, 255, 0.08) 320deg,
    rgba(255, 255, 255, 0) 349.2deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 74%, #000 75%);
  mask: radial-gradient(circle, transparent 0 74%, #000 75%);
  opacity: 0.75;
}

.value-shell,
.faq-shell {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  border-radius: 28px;
  border: 1px solid rgba(120, 255, 197, 0.08);
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 243, 154, 0.05), transparent 28%),
    radial-gradient(circle at 82% 92%, rgba(24, 243, 154, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(5, 10, 10, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 70px rgba(0, 0, 0, 0.34),
    var(--shadow);
}

.value-shell {
  margin: 0 0 18px;
}

.faq-shell {
  display: grid;
  grid-template-columns: var(--faq-columns);
  gap: 24px;
  margin: 0 0 24px;
}

.section-copy {
  max-width: 780px;
  margin-bottom: 24px;
}

.faq-copy {
  margin-bottom: 0;
}

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

.section-copy h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-intro {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
}

.value-grid {
  display: grid;
  grid-template-columns: var(--value-columns);
  gap: 18px;
}

.value-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 243, 154, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 255, 197, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(24, 243, 154, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(17, 44, 32, 0.94), rgba(5, 14, 13, 0.94) 58%, rgba(3, 9, 8, 0.98));
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(193, 255, 225, 0.08),
    inset 0 0 0 1px rgba(24, 243, 154, 0.1),
    0 18px 48px rgba(1, 10, 7, 0.44),
    0 0 32px rgba(24, 243, 154, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.value-card::before,
.value-card::after,
.faq-item::before,
.faq-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.value-card::before,
.faq-item::before {
  inset: auto -12% -44% 40%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 243, 154, 0.22) 0%, rgba(24, 243, 154, 0.05) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.95;
}

.value-card::after,
.faq-item::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(24, 243, 154, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.value-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 255, 191, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(214, 255, 233, 0.12),
    inset 0 0 0 1px rgba(24, 243, 154, 0.16),
    0 26px 60px rgba(1, 12, 8, 0.56),
    0 0 42px rgba(24, 243, 154, 0.18);
}

.value-card {
  min-height: 214px;
  padding: 22px;
}

.value-index {
  margin: 0 0 18px;
  color: #b7ffd8;
  text-shadow: 0 0 14px rgba(24, 243, 154, 0.12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.value-card h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: #f3f7f4;
}

.value-card p {
  margin: 0;
  color: #9fb1a9;
  line-height: 1.8;
}

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

.faq-visual-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(24, 243, 154, 0.14);
  background:
    radial-gradient(circle at 12% 16%, rgba(120, 255, 197, 0.12), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(24, 243, 154, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(12, 30, 24, 0.96), rgba(5, 14, 13, 0.96) 58%, rgba(3, 9, 8, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(193, 255, 225, 0.08),
    inset 0 0 0 1px rgba(24, 243, 154, 0.1),
    0 20px 52px rgba(1, 10, 7, 0.42),
    0 0 32px rgba(24, 243, 154, 0.08);
}

.faq-visual-head,
.faq-visual-meta,
.faq-donut-wrap,
.faq-donut-legend {
  display: flex;
  align-items: center;
}

.faq-visual-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.faq-visual-head strong,
.faq-visual-label {
  position: relative;
  z-index: 1;
}

.faq-visual-head strong {
  display: block;
  font-size: 1.3rem;
  color: #f2f7f4;
}

.faq-visual-label {
  margin: 0 0 6px;
  color: #b7ffd8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.faq-visual-meta {
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-visual-meta .is-active {
  color: var(--green-soft);
  font-weight: 800;
}

.faq-visual-meta button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(126, 247, 198, 0.24);
  background: rgba(5, 18, 13, 0.72);
  color: rgba(126, 247, 198, 0.94);
  font: inherit;
  font-size: 1.2rem;
}

.faq-line-chart {
  position: relative;
  min-height: 190px;
  padding: 18px 12px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 12, 11, 0.58);
}

.faq-line-grid,
.faq-line-chart svg {
  position: absolute;
  inset: 14px 12px 32px;
}

.faq-line-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
  opacity: 0.38;
}

.faq-line-chart svg {
  width: calc(100% - 24px);
  height: calc(100% - 46px);
  overflow: visible;
}

.faq-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-line-a {
  stroke: #7be9ff;
}

.faq-line-b {
  stroke: #8bdb56;
}

.faq-line-c {
  stroke: #2cd7d9;
}

.faq-line-dots circle:nth-child(1),
.faq-line-dots circle:nth-child(4) {
  fill: #7be9ff;
}

.faq-line-dots circle:nth-child(2),
.faq-line-dots circle:nth-child(3) {
  fill: #8bdb56;
}

.faq-line-axis {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(161, 176, 170, 0.72);
  font-size: 0.72rem;
}

.faq-visual-lower {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.faq-mini-card {
  min-height: 210px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 12, 11, 0.52);
}

.faq-bar-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 150px;
  margin-top: 18px;
}

.faq-bar-chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(128, 255, 137, 0.92), rgba(18, 111, 135, 0.55));
  box-shadow: 0 0 18px rgba(24, 243, 154, 0.12);
}

.faq-donut-wrap {
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.faq-donut-chart {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(5, 14, 13, 0.96) 0 34%, transparent 35%),
    conic-gradient(#156f86 0 41.3%, #d28b52 41.3% 72.6%, #8fcb4b 72.6% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.faq-donut-legend {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #edf3ef;
}

.faq-donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-donut-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.faq-donut-legend .tone-a {
  background: #156f86;
}

.faq-donut-legend .tone-b {
  background: #d28b52;
}

.faq-donut-legend .tone-c {
  background: #8fcb4b;
}

.faq-item {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(24, 243, 154, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 255, 197, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(24, 243, 154, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(17, 44, 32, 0.94), rgba(5, 14, 13, 0.94) 58%, rgba(3, 9, 8, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(193, 255, 225, 0.08),
    inset 0 0 0 1px rgba(24, 243, 154, 0.1),
    0 18px 48px rgba(1, 10, 7, 0.44),
    0 0 32px rgba(24, 243, 154, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item::before,
.faq-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.faq-item::before {
  inset: auto -12% -44% 40%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 243, 154, 0.22) 0%, rgba(24, 243, 154, 0.05) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.95;
}

.faq-item::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(24, 243, 154, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.faq-item:hover,
.faq-item[open] {
  transform: translateY(-4px);
  border-color: rgba(110, 255, 191, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(214, 255, 233, 0.12),
    inset 0 0 0 1px rgba(24, 243, 154, 0.16),
    0 26px 60px rgba(1, 12, 8, 0.56),
    0 0 42px rgba(24, 243, 154, 0.18);
}

.faq-item summary {
  position: relative;
  z-index: 1;
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: #edf3ef;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(126, 247, 198, 0.24);
  background: rgba(5, 18, 13, 0.72);
  color: rgba(126, 247, 198, 0.94);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

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

.faq-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 20px 18px;
  color: #9fb1a9;
  line-height: 1.85;
}

.faq-item code {
  color: var(--green-soft);
  font-size: 0.96em;
}

.results-shell {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    rgba(5, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

.results-main {
  padding-top: 18px;
}

.results-standalone {
  display: block;
}

.results.hidden {
  display: none;
}

.results {
  display: block;
}

.results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer-card {
  position: relative;
  overflow: visible;
  margin-top: 24px;
  padding: 34px 36px 24px;
  border-radius: 30px;
  border: 1px solid rgba(120, 255, 197, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 243, 154, 0.05), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(24, 243, 154, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(5, 10, 10, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 70px rgba(0, 0, 0, 0.34),
    var(--shadow);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  overflow: visible;
}

.site-footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer-col a,
.footer-faq-trigger,
.footer-privacy-trigger,
.footer-terms-trigger {
  color: rgba(244, 247, 245, 0.92);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer-col a {
  transition: color 180ms ease;
}

.site-footer-col a:hover {
  color: var(--green-soft);
}

.site-footer-faq,
.site-footer-privacy,
.site-footer-terms {
  position: relative;
}

.footer-faq-item,
.footer-privacy-item,
.footer-terms-item {
  display: block;
}

.footer-faq-trigger,
.footer-privacy-trigger,
.footer-terms-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-faq-trigger:hover,
.footer-faq-item.is-active .footer-faq-trigger,
.footer-faq-item:focus-within .footer-faq-trigger,
.footer-privacy-trigger:hover,
.footer-privacy-item.is-active .footer-privacy-trigger,
.footer-privacy-item:focus-within .footer-privacy-trigger,
.footer-terms-trigger:hover,
.footer-terms-item.is-active .footer-terms-trigger,
.footer-terms-item:focus-within .footer-terms-trigger {
  color: var(--green-soft);
}

.footer-faq-card,
.footer-privacy-card,
.footer-terms-card {
  position: absolute;
  left: calc(100% + 26px);
  top: 28px;
  width: min(420px, 34vw);
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(110, 255, 191, 0.24);
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 255, 197, 0.14), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(24, 243, 154, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(19, 47, 35, 0.96), rgba(7, 17, 15, 0.96) 58%, rgba(3, 10, 8, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(214, 255, 233, 0.12),
    inset 0 0 0 1px rgba(24, 243, 154, 0.16),
    0 24px 54px rgba(1, 12, 8, 0.46),
    0 0 36px rgba(24, 243, 154, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
  z-index: 3;
}

.site-footer-privacy .footer-privacy-card,
.site-footer-terms .footer-terms-card {
  left: auto;
  right: calc(100% + 26px);
}

.footer-faq-item.is-active .footer-faq-card,
.footer-faq-item:hover .footer-faq-card,
.footer-faq-item:focus-within .footer-faq-card,
.footer-privacy-item.is-active .footer-privacy-card,
.footer-privacy-item:hover .footer-privacy-card,
.footer-privacy-item:focus-within .footer-privacy-card,
.footer-terms-item.is-active .footer-terms-card,
.footer-terms-item:hover .footer-terms-card,
.footer-terms-item:focus-within .footer-terms-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.footer-faq-card p,
.footer-privacy-card p,
.footer-terms-card p {
  margin: 0;
  color: #9fb1a9;
  line-height: 1.8;
}

.footer-faq-card code,
.footer-privacy-card code,
.footer-terms-card code {
  color: var(--green-soft);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer-bottom p {
  margin: 0;
}

.section-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.results-top h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.export-button {
  min-height: 60px;
  border-radius: 14px;
}

.results-summary {
  margin: 16px 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.results-metrics {
  grid-template-columns: var(--results-metric-columns);
  margin-bottom: 18px;
}

.results-grid {
  grid-template-columns: var(--results-grid-columns);
  margin-bottom: 18px;
}

.results-grid.lower {
  grid-template-columns: var(--results-grid-lower-columns);
}

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

.results-grid.lower.hourly-only {
  grid-template-columns: 1fr;
}

.results-grid.lower.hourly-only .wide-chart-panel {
  width: 100%;
}

.result-card,
.result-panel {
  border-radius: 22px;
}

.result-card {
  padding: 22px;
}

.results-metrics .result-card:not(.crown-card) {
  display: flex;
  flex-direction: column;
}

.result-card h3,
.panel-head h3 {
  margin: 10px 0 0;
}

.crown-card h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.crown-value {
  margin: 14px 0 10px;
  color: var(--green-soft);
  font-size: 1.12rem;
}

.crown-copy,
.result-card span,
.leaderboard-meta span,
.insight-card p,
.stat-card span,
.hour-bar span,
.hour-bar small {
  color: var(--muted);
}

.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.share-row span {
  font-size: 2rem;
  font-weight: 800;
}

.metric-chart {
  margin-top: 18px;
  min-height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
}

.metric-empty {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.metric-chart-days {
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 18px 14px 14px;
}

.mini-day-bar {
  flex: 1 1 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 8px;
  min-width: 0;
}

.mini-day-fill {
  display: block;
  width: 100%;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(112, 255, 209, 0.95), rgba(17, 163, 111, 0.88));
  box-shadow: 0 10px 22px rgba(24, 243, 154, 0.16);
}

.mini-day-bar small {
  color: #92a49d;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.3;
}

.metric-chart-hours {
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 16px 12px 14px;
}

.mini-hour-bar {
  flex: 1 1 0;
  height: 100%;
  display: flex;
  align-items: end;
}

.mini-hour-bar span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: rgba(136, 151, 143, 0.25);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.mini-hour-bar.is-peak span {
  background: linear-gradient(180deg, rgba(127, 255, 214, 1), rgba(32, 212, 145, 0.94));
  box-shadow: 0 10px 24px rgba(24, 243, 154, 0.18);
}

.metric-chart-volume {
  display: grid;
  gap: 14px;
  padding: 18px 16px;
  align-content: center;
}

.volume-rail {
  display: flex;
  min-height: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.volume-segment {
  display: block;
  min-width: 0;
}

.volume-segment-1 {
  background: linear-gradient(90deg, #2ff2ab, #16b876);
}

.volume-segment-2 {
  background: linear-gradient(90deg, #19c488, #109762);
}

.volume-segment-3 {
  background: linear-gradient(90deg, #0f8c5c, #0a6e49);
}

.volume-segment-4 {
  background: linear-gradient(90deg, #0b5c3e, #094430);
}

.volume-segment-other {
  background: rgba(255, 255, 255, 0.08);
}

.volume-legend {
  display: grid;
  gap: 10px;
}

.volume-legend-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: #dbe7e1;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.volume-legend-item small {
  color: var(--muted);
}

.result-panel {
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.leaderboard-list,
.insight-grid,
.member-stats,
.hourly-chart {
  margin-top: 18px;
}

.leaderboard-list,
.insight-grid,
.member-stats,
.hourly-chart {
  display: grid;
  gap: 14px;
}

.leaderboard-row,
.insight-card,
.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.rank-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--green);
  font-weight: 800;
}

.leaderboard-meta {
  display: grid;
  gap: 4px;
}

.share-bar {
  grid-column: 2 / 4;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.share-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #109762, var(--green));
}

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

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

.insight-card,
.stat-card {
  padding: 18px;
  min-height: 140px;
}

.insight-card strong,
.stat-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.insight-card p,
.stat-card span {
  margin: 0;
  line-height: 1.7;
}

.wide-chart-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 243, 154, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    rgba(5, 10, 10, 0.88);
}

.hourly-chart {
  position: relative;
  display: flex;
  width: 100%;
  align-items: end;
  gap: clamp(6px, 0.7vw, 14px);
  min-height: 390px;
  padding: 22px 10px 14px;
}

.hourly-chart::before {
  content: "";
  position: absolute;
  inset: 54px 10px 50px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 25%, calc(100% / var(--hour-grid-columns, 24)) 100%;
  opacity: 0.35;
  pointer-events: none;
}

.hour-bar {
  position: relative;
  flex: 1 1 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  justify-items: center;
  min-height: 340px;
  min-width: 0;
}

.hour-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  bottom: 36px;
  width: min(100%, 34px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.hour-bar > * {
  position: relative;
  z-index: 1;
}

.hour-bar-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #dbe8e1;
  transition: opacity 180ms ease;
}

.hour-bar-value.is-muted {
  opacity: 0.22;
}

.hour-bar-rail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 6px 0;
}

.hour-bar-fill {
  width: min(100%, 34px);
  min-height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(42, 244, 167, 0.98), rgba(21, 155, 106, 0.92));
  box-shadow:
    0 10px 24px rgba(24, 243, 154, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hour-bar.is-peak .hour-bar-fill {
  background:
    linear-gradient(180deg, rgba(121, 255, 210, 1), rgba(28, 214, 144, 0.94));
  box-shadow:
    0 14px 28px rgba(24, 243, 154, 0.22),
    0 0 0 1px rgba(126, 247, 198, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hour-bar-label {
  font-size: 0.8rem;
  color: #95a59f;
  letter-spacing: 0.02em;
  transition: opacity 180ms ease;
}

.hour-bar-label.is-muted {
  opacity: 0.28;
}

.stat-value {
  margin: 12px 0 10px;
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 700ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

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

@media (max-width: 1080px) {
  :root {
    --page-gutter: 18px;
    --section-pad: 24px;
    --card-pad: 24px;
    --layout-gap: 26px;
    --hero-title-max: 10.8ch;
    --stats-columns: repeat(2, minmax(0, 1fr));
    --value-columns: 1fr;
    --faq-columns: 1fr;
    --results-metric-columns: repeat(2, minmax(0, 1fr));
    --results-grid-columns: 1fr;
    --results-grid-lower-columns: 1fr;
  }

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

  .topbar::after {
    top: auto;
    bottom: 0;
  }

  .topbar-actions {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: start;
  }

  .home-page .topbar-actions {
    display: none;
  }

  .mobile-account {
    display: block;
  }

  .header-controls {
    position: absolute;
    top: 14px;
    right: max(0px, env(safe-area-inset-right));
    grid-column: auto;
    gap: 10px;
  }

  .brand {
    padding-right: 152px;
  }

  .user-login-link {
    position: relative;
    grid-column: auto;
    display: inline-grid;
  }

  .hero-grid,
  .auth-layout,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "intro"
      "upload"
      "support";
    row-gap: var(--layout-gap);
  }

  .upload-card,
  .auth-card {
    max-width: none;
    justify-self: stretch;
  }

  .auth-page:not(.login-page) .auth-card {
    order: 1;
  }

  .auth-page:not(.login-page) .auth-copy {
    order: 2;
  }

  .login-page .auth-card {
    order: 1;
  }

  .login-page .auth-copy {
    order: 2;
  }

  .auth-copy {
    max-width: none;
  }

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

@media (max-width: 840px) {
  :root {
    --page-gutter: 16px;
    --page-bottom: 56px;
    --section-pad: 22px;
    --card-pad: 22px;
    --layout-gap: 22px;
    --cluster-gap: 14px;
    --topbar-gap: 14px;
    --button-height: 46px;
    --button-min-width: 118px;
    --hero-title-max: 9.6ch;
    --hero-proof-columns: 1fr;
    --stats-columns: 1fr;
    --results-metric-columns: 1fr;
  }

  .hero-tags,
  .hero-proof,
  .insight-grid,
  .member-stats,
  .hourly-chart,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel .member-stats {
    grid-template-columns: 1fr;
  }

  .value-shell,
  .faq-shell,
  .results-shell,
  .auth-card,
  .site-footer-card {
    padding: var(--section-pad);
  }

  .topbar {
    padding-top: 8px;
  }

  .brand {
    min-width: 0;
    padding-right: 170px;
  }

  .brand-link,
  .brand-titles {
    min-width: 0;
  }

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

  .brand-titles {
    gap: 8px;
  }

  .brand-name {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .brand-subtitle {
    font-size: 0.74rem;
    letter-spacing: 0.24em;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-button,
  .session-badge {
    width: 100%;
    min-width: 0;
  }

  .user-login-link {
    width: 58px;
    height: 58px;
  }

  .mobile-account {
    top: auto;
  }

  .header-controls {
    top: 16px;
    gap: 9px;
  }

  .language-button {
    min-width: 74px;
    height: 48px;
    padding: 0 11px;
    gap: 6px;
  }

  .language-globe,
  .language-globe svg {
    width: 20px;
    height: 20px;
  }

  .user-login-icon {
    width: 38px;
    height: 38px;
  }

  .hero-copy,
  .auth-copy {
    min-width: 0;
  }

  .hero-title {
    margin-top: 18px;
  }

  .hero-line-top {
    font-size: clamp(2.9rem, 11vw, 4.35rem);
  }

  .hero-line-main,
  .hero-line-bottom {
    font-size: clamp(3.1rem, 13vw, 4.8rem);
  }

  html[data-language="en"] .hero-title,
  html[data-language="pt-BR"] .hero-title,
  html[data-language="es"] .hero-title {
    max-width: min(100%, 15ch);
    gap: 0.02em;
    padding-bottom: 0.34em;
  }

  html[data-language="en"] .hero-line-top,
  html[data-language="pt-BR"] .hero-line-top,
  html[data-language="es"] .hero-line-top {
    font-size: clamp(2.4rem, 9.2vw, 3.45rem);
  }

  html[data-language="en"] .hero-line-main,
  html[data-language="en"] .hero-line-bottom,
  html[data-language="pt-BR"] .hero-line-main,
  html[data-language="pt-BR"] .hero-line-bottom,
  html[data-language="es"] .hero-line-main,
  html[data-language="es"] .hero-line-bottom {
    font-size: clamp(2.62rem, 9.8vw, 3.78rem);
    line-height: 1.04;
    padding-bottom: 0.08em;
  }

  .hero-text {
    margin: 16px 0 16px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-tags {
    grid-template-columns: 1fr;
  }

  .tag-chip,
  .eyebrow-pill,
  .auth-point {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-proof {
    width: 100%;
    gap: 12px;
    justify-items: start;
  }

  .proof-text,
  .proof-meta {
    font-size: 0.94rem;
  }

  .upload-card-head {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
  }

  .upload-card-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .dropzone {
    min-height: 260px;
    padding: 20px 18px;
  }

  .dropzone h3 {
    font-size: 1rem;
  }

  .cta-button,
  .upload-pick,
  .analyze-button,
  .export-button {
    min-height: 58px;
    width: 100%;
  }

  .auth-layout {
    min-height: auto;
  }

  .auth-copy {
    padding: 0;
    background: none;
  }

  .auth-title {
    margin-top: 18px;
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .auth-text {
    font-size: 1rem;
  }

  .auth-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-copy {
    margin-bottom: 18px;
  }

  .section-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
    line-height: 1.08;
  }

  .section-intro {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .value-card,
  .insight-card,
  .stat-card {
    min-height: 0;
  }

  .results-top,
  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-main {
    padding-top: 10px;
  }

  .results-top {
    gap: 14px;
  }

  .results-top h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .results-top .export-button {
    width: 100%;
  }

  .results-summary {
    margin: 14px 0 18px;
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .result-card,
  .result-panel {
    padding: 20px;
  }

  .results-side-stack {
    gap: 14px;
  }

  .result-card h3,
  .panel-head h3 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .crown-card h3 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .crown-value {
    margin: 12px 0 8px;
    font-size: 1.02rem;
  }

  .crown-copy {
    line-height: 1.68;
  }

  .share-row {
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .share-row span {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .metric-chart {
    min-height: 132px;
    margin-top: 14px;
  }

  .leaderboard-row {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    padding: 14px;
  }

  .leaderboard-row > strong:last-of-type {
    grid-column: 2;
    justify-self: start;
    font-size: 1rem;
  }

  .share-bar {
    grid-column: 1 / -1;
  }

  .rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .leaderboard-meta strong,
  .insight-card strong,
  .stat-card strong {
    overflow-wrap: anywhere;
  }

  .insight-grid,
  .member-stats {
    gap: 12px;
  }

  .insight-card,
  .stat-card {
    padding: 16px;
  }

  .wide-chart-panel {
    overflow: visible;
  }

  .hourly-chart {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 0;
    gap: 4px;
    padding: 18px 6px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hourly-chart::-webkit-scrollbar {
    display: none;
  }

  .hourly-chart::before {
    inset: 44px 6px 42px;
    border-radius: 16px;
  }

  .hour-bar {
    min-height: 200px;
    gap: 8px;
  }

  .hour-bar::before,
  .hour-bar-fill {
    width: min(100%, 24px);
  }

  .hour-bar-value {
    font-size: 0.76rem;
  }

  .hour-bar-label {
    font-size: 0.68rem;
  }

  .footer-faq-card,
  .footer-privacy-card,
  .footer-terms-card {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding: 16px 18px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: none;
    display: none;
  }

  .footer-faq-item.is-active .footer-faq-card,
  .footer-faq-item:focus-within .footer-faq-card,
  .footer-privacy-item.is-active .footer-privacy-card,
  .footer-privacy-item:focus-within .footer-privacy-card,
  .footer-terms-item.is-active .footer-terms-card,
  .footer-terms-item:focus-within .footer-terms-card {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .footer-faq-trigger,
  .footer-privacy-trigger,
  .footer-terms-trigger {
    position: relative;
    padding: 4px 34px 4px 0;
  }

  .footer-faq-trigger::after,
  .footer-privacy-trigger::after,
  .footer-terms-trigger::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(126, 247, 198, 0.2);
    color: rgba(126, 247, 198, 0.9);
    background: rgba(5, 18, 13, 0.56);
    font-size: 0.95rem;
    line-height: 1;
  }

  .footer-faq-item.is-active .footer-faq-trigger::after,
  .footer-privacy-item.is-active .footer-privacy-trigger::after,
  .footer-terms-item.is-active .footer-terms-trigger::after {
    content: "-";
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-shell {
    display: block;
    gap: 0;
  }

  .faq-copy {
    margin-bottom: 0;
  }

  .faq-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
    max-width: 11ch;
  }

  .faq-intro {
    margin: 14px 0 0;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .faq-copy .faq-visual-card {
    display: none;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .faq-item {
    border-radius: 18px;
    box-shadow:
      inset 0 1px 0 rgba(193, 255, 225, 0.06),
      inset 0 0 0 1px rgba(24, 243, 154, 0.08),
      0 12px 32px rgba(1, 10, 7, 0.3);
  }

  .faq-item:hover,
  .faq-item[open] {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(193, 255, 225, 0.08),
      inset 0 0 0 1px rgba(24, 243, 154, 0.12),
      0 14px 34px rgba(1, 10, 7, 0.34);
  }

  .faq-item summary {
    padding: 16px 48px 16px 16px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .faq-item summary::after {
    right: 14px;
    top: 14px;
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 16px 16px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .hero-title {
    max-width: 10.4ch;
  }

  .hour-bar {
    flex: initial;
    min-height: 220px;
  }

  .hour-bar::before,
  .hour-bar-fill {
    width: min(100%, 28px);
  }

  .metric-chart {
    min-height: 140px;
  }

  .metric-chart-days {
    gap: 6px;
    padding-inline: 10px;
  }

  .mini-day-bar small {
    font-size: 0.62rem;
  }

  .metric-chart-hours {
    gap: 3px;
    padding-inline: 10px;
  }

  .volume-legend-item {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 12px;
    --section-pad: 18px;
    --card-pad: 18px;
    --cluster-gap: 12px;
    --topbar-gap: 12px;
    --button-height: 44px;
    --button-min-width: 0;
  }

  .page-bg::before {
    height: 38vh;
  }

  .page-bg::after {
    height: 22vh;
  }

  .topbar-actions {
    grid-template-columns: 1fr;
  }

  .brand {
    padding-right: 122px;
  }

  .user-login-link {
    width: 54px;
    height: 54px;
  }

  .mobile-account {
    right: auto;
  }

  .header-controls {
    right: max(0px, env(safe-area-inset-right));
    gap: 8px;
  }

  .language-button {
    min-width: 52px;
    width: 52px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .language-globe {
    display: none;
  }

  .language-menu {
    width: min(220px, calc(100vw - 24px));
  }

  .user-login-icon {
    width: 35px;
    height: 35px;
  }

  .support-fab {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    box-shadow:
      inset 0 0 0 1px rgba(184, 255, 227, 0.08),
      0 0 0 6px rgba(24, 243, 154, 0.05),
      0 16px 34px rgba(0, 0, 0, 0.4),
      0 0 28px rgba(24, 243, 154, 0.2);
  }

  .support-fab::before {
    inset: -6px;
  }

  .support-fab-icon {
    width: 34px;
    height: 34px;
  }

  .support-fab-label {
    display: none;
  }

  .hero-title,
  .faq-copy h2 {
    max-width: none;
  }

  html[data-language="en"] .hero-title,
  html[data-language="pt-BR"] .hero-title,
  html[data-language="es"] .hero-title {
    max-width: min(100%, 15.2ch);
    padding-bottom: 0.34em;
  }

  html[data-language="en"] .hero-line-top,
  html[data-language="pt-BR"] .hero-line-top,
  html[data-language="es"] .hero-line-top {
    font-size: clamp(2.15rem, 8.7vw, 3rem);
  }

  html[data-language="en"] .hero-line-main,
  html[data-language="en"] .hero-line-bottom,
  html[data-language="pt-BR"] .hero-line-main,
  html[data-language="pt-BR"] .hero-line-bottom,
  html[data-language="es"] .hero-line-main,
  html[data-language="es"] .hero-line-bottom {
    font-size: clamp(2.32rem, 9.35vw, 3.25rem);
    line-height: 1.04;
    padding-bottom: 0.08em;
  }

  .avatar {
    width: 44px;
    height: 44px;
  }

  .dropzone-icon {
    margin-bottom: 14px;
  }

  .hero-stats {
    margin-top: 16px;
  }

  .stat-spotlight {
    min-height: 118px;
    padding: 16px;
  }

  .faq-item summary {
    font-size: 0.92rem;
  }

  .footer-faq-card,
  .footer-privacy-card,
  .footer-terms-card {
    padding: 14px 16px;
  }

  .results-summary,
  .crown-copy,
  .result-card span,
  .insight-card p,
  .stat-card span {
    line-height: 1.65;
  }

  .results-shell {
    border-radius: 22px;
  }

  .results-top h2 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .results-summary {
    font-size: 0.94rem;
  }

  .result-card,
  .result-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .result-card h3,
  .panel-head h3 {
    font-size: clamp(1.25rem, 6.4vw, 1.6rem);
  }

  .crown-card h3 {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .metric-chart {
    min-height: 116px;
    border-radius: 14px;
  }

  .metric-chart-days {
    padding: 14px 10px 10px;
  }

  .metric-chart-hours {
    padding: 12px 8px 10px;
  }

  .metric-chart-volume {
    padding: 14px 12px;
    gap: 10px;
  }

  .mini-day-bar {
    gap: 6px;
  }

  .mini-day-bar small {
    font-size: 0.58rem;
  }

  .volume-legend {
    gap: 8px;
  }

  .volume-legend-item {
    gap: 8px;
  }

  .leaderboard-list,
  .insight-grid,
  .member-stats,
  .hourly-chart {
    margin-top: 14px;
  }

  .leaderboard-row {
    padding: 12px;
  }

  .leaderboard-meta {
    gap: 2px;
  }

  .leaderboard-meta span {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .rank-badge {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }

  .insight-card,
  .stat-card {
    padding: 14px;
  }

  .insight-card strong,
  .stat-card strong {
    font-size: 1.02rem;
    margin: 8px 0 6px;
  }

  .stat-value {
    font-size: 1.6rem;
    margin: 10px 0 8px;
  }

  .hourly-chart {
    gap: 6px;
    min-height: 290px;
    padding: 16px 4px 10px;
  }

  .hourly-chart::before {
    inset: 42px 4px 38px;
  }

  .hour-bar {
    min-height: 212px;
    gap: 8px;
  }

  .hour-bar::before,
  .hour-bar-fill {
    width: min(100%, 22px);
  }

  .hour-bar-value {
    font-size: 0.7rem;
  }

  .hour-bar-label {
    font-size: 0.66rem;
  }

  .member-stats,
  .insight-grid {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .wide-chart-panel {
    padding: 18px;
  }

  .hourly-chart[data-mode="mobile-24"] {
    gap: 5px;
    min-height: 236px;
    padding: 10px 10px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
      rgba(255, 255, 255, 0.01);
  }

  .hourly-chart[data-mode="mobile-24"]::before {
    inset: 38px 10px 34px;
    border-radius: 18px;
    opacity: 0.24;
  }

  .hourly-chart[data-mode="mobile-24"]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(5, 10, 10, 0.86) 0%, rgba(5, 10, 10, 0) 10%, rgba(5, 10, 10, 0) 90%, rgba(5, 10, 10, 0.86) 100%);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar {
    flex: 0 0 11px;
    min-width: 11px;
    min-height: 168px;
    gap: 7px;
    scroll-snap-align: start;
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar::before,
  .hourly-chart[data-mode="mobile-24"] .hour-bar-fill {
    width: 11px;
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar::before {
    top: 32px;
    bottom: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
      rgba(255, 255, 255, 0.018);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar-value {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(220, 234, 226, 0.9);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar-label {
    font-size: 0.56rem;
    letter-spacing: 0;
    white-space: nowrap;
    transform: translateY(1px);
    color: rgba(149, 165, 159, 0.86);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar-value.is-muted,
  .hourly-chart[data-mode="mobile-24"] .hour-bar-label.is-muted {
    opacity: 0;
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar.is-anchor .hour-bar-label,
  .hourly-chart[data-mode="mobile-24"] .hour-bar.is-peak .hour-bar-label {
    opacity: 1;
    color: rgba(223, 235, 229, 0.96);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar.is-peak .hour-bar-value {
    color: #e7fff6;
    text-shadow: 0 0 14px rgba(24, 243, 154, 0.18);
  }

  .hourly-chart[data-mode="mobile-24"] .hour-bar.is-peak .hour-bar-fill {
    width: 13px;
    box-shadow:
      0 12px 24px rgba(24, 243, 154, 0.22),
      0 0 0 1px rgba(126, 247, 198, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .hourly-chart[data-mode="mobile-24"]::-webkit-scrollbar {
    height: 0;
  }
}

.admin-page .page-bg::before {
  background:
    linear-gradient(180deg, rgba(3, 8, 7, 0.3), rgba(3, 8, 7, 0.76)),
    radial-gradient(circle at 18% 16%, rgba(24, 243, 154, 0.1), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(24, 243, 154, 0.08), transparent 22%);
  inset: 0;
  height: 100%;
  clip-path: none;
  border-top: 0;
  box-shadow: none;
}

.admin-page .page-bg::after {
  display: none;
}

.admin-shell {
  display: grid;
  gap: 22px;
  padding-top: 28px;
}

.admin-hero,
.admin-card,
.admin-kpi-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(24, 243, 154, 0.08), transparent 26%),
    radial-gradient(circle at 82% 84%, rgba(24, 243, 154, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(6, 12, 12, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.34),
    var(--shadow);
}

.admin-hero {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 22px;
  padding: 30px;
}

.admin-hero-copy h1,
.admin-card h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
}

.admin-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.admin-hero-text {
  max-width: 54rem;
  margin: 18px 0 0;
  color: #dce7e1;
  font-size: 1.04rem;
  line-height: 1.8;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.admin-action-button {
  min-width: 180px;
}

.admin-hero-aside {
  display: grid;
  gap: 18px;
}

.admin-note-card,
.admin-mini-stat {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 14, 14, 0.82);
}

.admin-note-card {
  padding: 22px;
}

.admin-note-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
}

.admin-note-card p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.admin-mini-stat {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.admin-mini-stat span,
.admin-kpi-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-mini-stat strong {
  font-size: 2rem;
}

.admin-mini-stat small,
.admin-kpi-card small {
  color: #c7d4cd;
  line-height: 1.6;
}

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

.admin-kpi-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.admin-kpi-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.admin-focus-grid,
.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-workspace {
  display: grid;
  gap: 18px;
}

.admin-card {
  padding: 24px;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-card-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.admin-card-head-wide {
  align-items: center;
}

.admin-badge,
.admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 243, 154, 0.24);
  background: rgba(11, 31, 22, 0.72);
  color: var(--green-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-pill.is-admin {
  border-color: rgba(255, 219, 107, 0.28);
  background: rgba(52, 37, 10, 0.66);
  color: #ffe08a;
}

.admin-pill.is-success {
  border-color: rgba(24, 243, 154, 0.26);
  color: #cffff1;
}

.admin-pill.is-danger {
  border-color: rgba(255, 129, 129, 0.28);
  background: rgba(72, 18, 18, 0.7);
  color: #ffd0d0;
}

.admin-pill.is-neutral {
  border-color: rgba(255, 255, 255, 0.1);
  color: #d8e0dc;
}

.admin-spotlight-list,
.admin-guidance-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-spotlight-item,
.admin-guidance-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-spotlight-item strong,
.admin-guidance-item strong {
  display: block;
  font-size: 1rem;
}

.admin-spotlight-item p,
.admin-guidance-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-spotlight-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.admin-spotlight-meta small {
  color: var(--muted);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-search,
.admin-settings-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(7, 15, 15, 0.78);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.admin-search {
  min-height: 52px;
  min-width: 280px;
  padding: 0 16px;
}

.admin-settings-form textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.admin-search:focus,
.admin-settings-form textarea:focus {
  border-color: rgba(24, 243, 154, 0.36);
  box-shadow: 0 0 0 4px rgba(24, 243, 154, 0.08);
}

.admin-table-shell {
  margin-top: 18px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
  color: #dce8e2;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td {
  color: #f1f5f2;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table-user {
  display: grid;
  gap: 6px;
}

.admin-table-user strong {
  font-size: 0.98rem;
}

.admin-table-user span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-settings-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-toggle-row,
.admin-textarea-row {
  display: grid;
  gap: 12px;
}

.admin-toggle-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-toggle-row strong,
.admin-textarea-row span {
  display: block;
  font-size: 1rem;
}

.admin-toggle-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-toggle-row input[type="checkbox"] {
  width: 58px;
  height: 32px;
  accent-color: #18f39a;
}

.admin-textarea-row {
  color: #e8efeb;
}

.admin-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-submit-button {
  min-width: 210px;
  min-height: 58px;
}

.admin-inline-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-inline-status.is-success {
  color: #d2ffeb;
}

.admin-inline-status.is-error {
  color: #ffd5d5;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-empty-row {
  padding: 8px 0;
}

@media (max-width: 1080px) {
  .admin-hero,
  .admin-focus-grid,
  .admin-settings-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .admin-shell {
    gap: 18px;
    padding-top: 18px;
  }

  .admin-hero,
  .admin-card,
  .admin-kpi-card {
    border-radius: 24px;
  }

  .admin-hero,
  .admin-card {
    padding: 20px;
  }

  .admin-hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .admin-kpi-grid,
  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

  .admin-card-head,
  .admin-card-head-wide,
  .admin-form-actions,
  .admin-spotlight-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-search {
    min-width: 0;
  }

  .admin-toolbar {
    width: 100%;
  }

  .admin-toolbar .admin-search,
  .admin-hero-actions .cta-button,
  .admin-form-actions .cta-button {
    width: 100%;
  }

  .admin-spotlight-meta {
    justify-items: start;
    text-align: left;
  }

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

/* Admin dashboard refresh */
.admin-page {
  --admin-bg: #0b1120;
  --admin-panel: rgba(13, 19, 34, 0.92);
  --admin-panel-strong: #121a2f;
  --admin-panel-soft: #18233d;
  --admin-border: rgba(151, 165, 196, 0.16);
  --admin-text: #eef3ff;
  --admin-muted: #94a3c4;
  --admin-accent: #38bdf8;
  --admin-accent-strong: #4f46e5;
  --admin-success: #22c55e;
  --admin-danger: #f87171;
}

.admin-page .page-bg {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.18), transparent 30%),
    linear-gradient(180deg, #0a1020 0%, #0b1327 48%, #09111f 100%);
}

.admin-page .page-bg::before,
.admin-page .page-bg::after {
  display: none;
}

.admin-page .page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  min-height: 100vh;
  width: 100%;
  padding: 12px;
}

.admin-sidebar,
.admin-card,
.admin-kpi-card,
.admin-metric-card,
.admin-header {
  border: 1px solid var(--admin-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), var(--admin-panel);
  box-shadow: 0 22px 60px rgba(3, 7, 18, 0.34);
}

.admin-sidebar {
  position: sticky;
  top: 12px;
  display: grid;
  align-content: start;
  gap: 26px;
  height: calc(100vh - 24px);
  padding: 22px;
  border-radius: 28px;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--admin-text);
}

.admin-sidebar-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.admin-sidebar-brand strong,
.admin-sidebar-brand span {
  display: block;
}

.admin-sidebar-brand span,
.admin-sidebar-label,
.admin-eyebrow,
.admin-metric-card span,
.admin-kpi-card span {
  color: var(--admin-muted);
}

.admin-sidebar-nav {
  display: grid;
  gap: 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  color: #d7def0;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.16);
  color: #f7fbff;
}

.admin-sidebar-status {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.admin-sidebar-status strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  color: var(--admin-text);
}

.admin-sidebar-status p {
  margin: 10px 0 0;
  color: var(--admin-muted);
  line-height: 1.7;
}

.admin-main {
  display: grid;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.admin-page-section:not(.is-active) {
  display: none !important;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 24px;
}

.admin-header-copy h1 {
  margin: 8px 0 0;
  color: var(--admin-text);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.admin-header-text {
  max-width: 56rem;
  margin: 14px 0 0;
  color: #cad4eb;
  line-height: 1.8;
}

.admin-header-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.admin-header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.admin-primary-button {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--admin-accent), var(--admin-accent-strong));
  color: #f8fbff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.24);
}

.admin-overview-grid,
.admin-kpi-grid,
.admin-focus-grid,
.admin-settings-grid {
  display: grid;
  gap: 18px;
}

.admin-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-metric-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
}

.admin-metric-card strong {
  color: var(--admin-text);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
}

.admin-metric-card small,
.admin-kpi-card small,
.admin-inline-status,
.admin-empty,
.admin-spotlight-item p,
.admin-guidance-item p,
.admin-table-user span,
.admin-spotlight-meta small {
  color: var(--admin-muted);
}

.admin-metric-card-accent {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(79, 70, 229, 0.16)),
    var(--admin-panel);
}

.admin-note-card strong {
  font-size: 1.15rem;
}

.admin-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-kpi-card,
.admin-card {
  padding: 22px;
  border-radius: 20px;
}

.admin-kpi-card strong {
  color: var(--admin-text);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

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

.admin-workspace {
  display: grid;
  gap: 18px;
}

.admin-card-head h2 {
  margin: 6px 0 0;
  color: var(--admin-text);
  font-size: 1.55rem;
}

.admin-badge,
.admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 196, 0.2);
  background: rgba(148, 163, 196, 0.08);
  color: #dce7fb;
  font-size: 0.8rem;
  font-weight: 700;
}

.admin-pill.is-admin {
  border-color: rgba(251, 191, 36, 0.26);
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
}

.admin-pill.is-success {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
}

.admin-pill.is-danger {
  border-color: rgba(248, 113, 113, 0.22);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
}

.admin-pill.is-neutral {
  color: #dbe5f5;
}

.admin-spotlight-item,
.admin-guidance-item,
.admin-toggle-row {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.admin-spotlight-item,
.admin-guidance-item {
  padding: 16px 18px;
}

.admin-search,
.admin-settings-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 196, 0.16);
  border-radius: 16px;
  background: rgba(8, 13, 24, 0.86);
  color: var(--admin-text);
}

.admin-search::placeholder,
.admin-settings-form textarea::placeholder {
  color: #6e7c9d;
}

.admin-search:focus,
.admin-settings-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.admin-table-shell {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 196, 0.12);
  background: rgba(7, 12, 22, 0.82);
}

.admin-table {
  min-width: 760px;
}

.admin-table th {
  background: rgba(16, 24, 42, 0.86);
  color: #c6d2ec;
}

.admin-table td {
  color: #eef3ff;
}

.admin-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
}

.admin-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-row-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 196, 0.18);
  background: rgba(148, 163, 196, 0.08);
  color: #eef3ff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-row-button:hover {
  background: rgba(148, 163, 196, 0.14);
}

.admin-row-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-row-button-danger {
  border-color: rgba(248, 113, 113, 0.2);
  background: rgba(248, 113, 113, 0.09);
  color: #fecaca;
}

.admin-row-button-danger:hover {
  background: rgba(248, 113, 113, 0.16);
}

.admin-row-button-success {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
}

.admin-row-button-success:hover {
  background: rgba(34, 197, 94, 0.18);
}

.admin-message-cell {
  max-width: 560px;
  white-space: normal;
  line-height: 1.7;
}

.admin-support-message {
  display: grid;
  gap: 8px;
}

.admin-support-message p {
  margin: 0;
}

.admin-support-message small,
.admin-support-answer span {
  color: var(--admin-muted);
}

.admin-support-answer {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  background: rgba(34, 197, 94, 0.07);
}

.admin-support-answer span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-support-reply {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.admin-reply-input {
  width: 100%;
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 196, 0.16);
  border-radius: 14px;
  background: rgba(8, 13, 24, 0.84);
  color: var(--admin-text);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.admin-reply-input:focus {
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.support-page {
  --page-max: 1464px;
  --page-gutter: 36px;
  --support-panel: rgba(4, 11, 20, 0.76);
  --support-line: rgba(110, 253, 207, 0.34);
  --support-muted: #c7d1e3;
  --support-soft: rgba(255, 255, 255, 0.08);
  background: #01040a;
}

.support-page .page-bg {
  background:
    linear-gradient(90deg, rgba(0, 2, 7, 0.66) 0%, rgba(0, 4, 12, 0.3) 42%, rgba(0, 2, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(1, 4, 12, 0.18) 0%, rgba(1, 4, 12, 0.08) 52%, rgba(0, 1, 6, 0.34) 100%),
    url("images/destek.png");
  background-size: cover, cover, max(1500px, 112vw) auto;
  background-position: center, center, 82% center;
  background-repeat: no-repeat;
}

.support-page .page-bg::before,
.support-page .page-bg::after {
  display: none;
}

.support-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100dvh;
  padding-bottom: 22px;
}

.support-topbar {
  min-height: 88px;
  padding: 0;
}

.support-topbar::before {
  display: none;
}

.support-topbar::after {
  left: 50%;
  right: auto;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(167, 191, 223, 0.12);
}

.support-page .brand-link {
  gap: 8px;
}

.support-page .brand-logo {
  width: 74px;
  height: 74px;
  filter:
    drop-shadow(0 0 14px rgba(24, 243, 154, 0.28))
    drop-shadow(0 0 24px rgba(39, 213, 255, 0.1));
}

.support-page .brand-titles {
  gap: 16px;
  margin-left: 0;
}

.support-page .brand-name {
  font-size: clamp(2.05rem, 3vw, 2.55rem);
  color: #68ef94;
  background: linear-gradient(125deg, #d8ffe1 0%, #61f291 34%, #1bbd63 68%, #0a653a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.support-page .brand-subtitle {
  color: rgba(50, 255, 159, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.4em;
}

.support-page .topbar-actions {
  gap: 16px;
  padding-right: 40px;
}

.support-page .header-button {
  min-width: 132px;
  min-height: 47px;
  border-radius: 10px;
  border-color: rgba(152, 168, 200, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(3, 7, 13, 0.56);
  box-shadow: none;
  color: #f7fbff;
  font-weight: 600;
}

.support-page .header-button.primary {
  border-color: rgba(24, 243, 154, 0.56);
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 243, 154, 0.28), transparent 72%),
    linear-gradient(180deg, rgba(9, 106, 71, 0.72), rgba(4, 34, 28, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(126, 247, 198, 0.16),
    0 0 26px rgba(24, 243, 154, 0.24);
}

.support-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 520px);
  gap: clamp(34px, 4.2vw, 56px);
  align-items: start;
  min-height: 0;
  padding-top: 30px;
}

.support-copy {
  width: min(100%, 520px);
  margin-top: 76px;
  padding-left: 28px;
}

.support-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(126, 247, 198, 0.14);
  border-radius: 12px;
  background: rgba(8, 18, 20, 0.66);
  color: #f2f7fb;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.support-live-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #47f99b;
  box-shadow: 0 0 18px rgba(71, 249, 155, 0.78);
}

.support-copy h1 {
  display: grid;
  gap: 2px;
  margin: 22px 0 0;
  color: #f7fbff;
  font-size: clamp(3.15rem, 4vw, 3.85rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.support-copy h1 span {
  white-space: nowrap;
}

.support-copy h1 strong {
  color: #52f58e;
  font: inherit;
  text-shadow: 0 0 34px rgba(82, 245, 142, 0.24);
}

.support-text {
  max-width: 320px;
  margin: 24px 0 0;
  color: #cfd7e7;
  font-size: 1.05rem;
  line-height: 1.72;
}

.support-feature-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 348px);
  margin-top: 48px;
  padding: 16px;
  border: 1px solid rgba(126, 247, 198, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(3, 14, 20, 0.74), rgba(7, 22, 28, 0.54)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 22px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.support-feature {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.support-feature-icon,
.support-metric > span {
  position: relative;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  color: #7effc0;
  background:
    radial-gradient(circle at 50% 28%, rgba(126, 255, 192, 0.26), transparent 58%),
    rgba(12, 66, 57, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(126, 247, 198, 0.13),
    0 0 26px rgba(24, 243, 154, 0.18);
}

.support-feature-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59ffab;
  box-shadow: 0 0 14px rgba(89, 255, 171, 0.9);
}

.support-feature svg,
.support-metric svg,
.support-hours > svg,
.support-input-wrap svg,
.support-textarea-wrap svg,
.support-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-feature strong {
  color: #f5fbff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.support-feature small {
  color: #bac6d7;
  font-size: 0.68rem;
  line-height: 1.25;
}

.support-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  transform: translateX(-24px);
  padding: 30px 28px 26px;
  border: 1px solid rgba(126, 247, 198, 0.62);
  border-radius: 20px;
  background:
    linear-gradient(125deg, rgba(5, 23, 34, 0.84), rgba(6, 8, 25, 0.72) 48%, rgba(0, 18, 16, 0.78)),
    var(--support-panel);
  box-shadow:
    inset 0 0 0 1px rgba(101, 196, 255, 0.18),
    inset 0 42px 90px rgba(255, 255, 255, 0.025),
    0 0 52px rgba(24, 243, 154, 0.16),
    0 34px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.support-card::before,
.support-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.support-card::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(106, 244, 255, 0.36), transparent 38%),
    radial-gradient(ellipse at 24% 0%, rgba(126, 92, 255, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(81, 224, 255, 0.14), rgba(25, 243, 154, 0.05) 28%, transparent 58%);
  opacity: 0.9;
}

.support-card::after {
  inset: 0;
  width: auto;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(162, 252, 255, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(111, 240, 255, 0.2), rgba(84, 116, 255, 0.08) 22%, transparent 52%);
  box-shadow:
    inset 1px 0 0 rgba(164, 252, 255, 0.64),
    inset 18px 0 40px rgba(84, 215, 255, 0.14),
    inset 0 1px 0 rgba(153, 136, 255, 0.44);
  opacity: 0.82;
}

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

.support-card h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.support-card .auth-status {
  margin-top: 16px;
  border-radius: 12px;
  border-color: rgba(126, 247, 198, 0.2);
  background: rgba(7, 24, 28, 0.68);
}

.support-form {
  display: grid;
  gap: 19px;
}

.support-form {
  margin-top: 20px;
}

.support-field,
.support-message-field {
  display: grid;
  gap: 10px;
}

.support-field > span:first-child,
.support-message-field > span:first-child {
  color: #f2f5fb;
  font-size: 0.9rem;
  font-weight: 700;
}

.support-input-wrap,
.support-textarea-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  border: 1px solid rgba(177, 197, 226, 0.28);
  border-radius: 9px;
  background: rgba(2, 8, 17, 0.62);
  color: #aebbd1;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.support-input-wrap {
  min-height: 50px;
  align-items: center;
  padding: 0 16px;
}

.support-textarea-wrap {
  min-height: 158px;
  padding: 16px;
}

.support-input-wrap:focus-within,
.support-textarea-wrap:focus-within {
  border-color: rgba(92, 234, 255, 0.54);
  background: rgba(3, 11, 22, 0.76);
  box-shadow:
    0 0 0 3px rgba(92, 234, 255, 0.07),
    0 0 26px rgba(24, 243, 154, 0.08);
}

.support-input-wrap input,
.support-message-field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f4f8ff;
  font: inherit;
  outline: none;
}

.support-input-wrap input {
  min-width: 0;
  height: 48px;
}

.support-input-wrap input::placeholder,
.support-message-field textarea::placeholder {
  color: rgba(205, 214, 229, 0.62);
}

.support-message-field textarea {
  min-height: 124px;
  height: 124px;
  line-height: 1.65;
  resize: vertical;
}

.support-input-wrap:has(input:disabled),
.support-textarea-wrap:has(textarea:disabled) {
  opacity: 0.58;
}

.support-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 51px;
  margin-top: 1px;
  border: 1px solid rgba(89, 255, 171, 0.62);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(74, 205, 215, 0.88), rgba(19, 187, 96, 0.96)),
    #16b981;
  color: #f5fff9;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 28px rgba(24, 243, 154, 0.22);
}

.support-submit svg {
  width: 20px;
  height: 20px;
}

.support-submit:disabled {
  cursor: not-allowed;
  filter: saturate(0.55);
  opacity: 0.72;
}

.support-auth-gate {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(24, 243, 154, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(24, 243, 154, 0.08), rgba(56, 189, 248, 0.04)),
    rgba(3, 17, 18, 0.68);
}

.support-auth-gate[hidden] {
  display: none;
}

.support-auth-gate strong {
  color: #f5fff9;
  font-size: 1rem;
}

.support-auth-gate p {
  margin: 0;
  color: #b7c3d6;
  line-height: 1.6;
}

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

.support-metrics {
  position: fixed;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(330px, 1.22fr);
  gap: 18px;
  width: min(var(--page-max), calc(100% - (var(--safe-left) + var(--safe-right))));
  min-height: 96px;
  margin-top: 0;
  padding: 14px 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(126, 247, 198, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(3, 14, 21, 0.76), rgba(4, 21, 26, 0.54)),
    rgba(0, 0, 0, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 24px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.support-metric,
.support-hours {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
}

.support-metric > span {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
}

.support-metric strong,
.support-hours strong {
  display: block;
  color: #f7fbff;
  font-size: 1.32rem;
  line-height: 1.1;
}

.support-metric small,
.support-hours small {
  display: block;
  margin-top: 7px;
  color: #c4cedf;
  line-height: 1.4;
}

.support-hours {
  justify-content: space-between;
  padding: 15px 22px 15px 27px;
  border: 1px solid rgba(24, 243, 154, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(8, 41, 48, 0.78), rgba(4, 42, 29, 0.68)),
    rgba(3, 16, 20, 0.7);
}

.support-hours strong {
  color: #5effa8;
  font-size: 1.02rem;
}

.support-hours > svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: #35ffa7;
  filter: drop-shadow(0 0 18px rgba(24, 243, 154, 0.58));
}

@media (max-width: 1200px) {
  .support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: 34px;
  }

  .support-copy {
    padding-left: 0;
  }

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

@media (max-width: 980px) {
  .support-page {
    --page-gutter: 20px;
  }

  .support-shell {
    display: block;
  }

  .support-page .page-bg {
    background-size: cover, cover, auto 100%;
    background-position: center, center, 50% center;
  }

  .support-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 28px;
  }

  .support-copy {
    width: 100%;
    margin-top: 0;
  }

  .support-feature-panel {
    margin-top: 34px;
  }

  .support-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
    transform: none;
  }

  .support-card {
    transform: none;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .support-shell {
    padding-bottom: 18px;
  }

  .support-topbar {
    min-height: auto;
    padding: 10px 0 16px;
  }

  .support-page .topbar-actions {
    padding-right: 0;
  }

  .support-page .brand-logo {
    width: 62px;
    height: 62px;
  }

  .support-page .brand-titles {
    gap: 9px;
  }

  .support-page .brand-subtitle {
    width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .support-layout {
    gap: 22px;
  }

  .support-copy {
    display: contents;
  }

  .support-live-pill {
    order: 1;
    justify-self: start;
  }

  .support-copy h1 {
    order: 2;
    min-width: 0;
    max-width: 100%;
    margin-top: 18px;
  }

  .support-text {
    order: 3;
    min-width: 0;
    max-width: min(100%, 330px);
  }

  .support-card {
    order: 4;
    width: min(100%, 548px);
    justify-self: center;
  }

  .support-feature-panel {
    order: 5;
    width: min(100%, 468px);
    justify-self: center;
    margin: 2px auto 0;
  }

  .support-copy h1 {
    font-size: clamp(2.42rem, 11.5vw, 3.65rem);
  }

  .support-copy h1 span {
    white-space: normal;
  }

  .support-feature-panel,
  .support-metrics {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 25px 18px;
    border-radius: 16px;
  }

  .support-auth-actions {
    grid-template-columns: 1fr;
  }

  .support-hours {
    padding: 16px;
  }
}

.admin-toggle-row {
  padding: 18px;
}

.admin-toggle-row input[type="checkbox"] {
  accent-color: var(--admin-accent-strong);
}

.admin-inline-status.is-success {
  color: #bbf7d0;
}

.admin-inline-status.is-error {
  color: #fecaca;
}

@media (max-width: 1180px) {
  .admin-dashboard {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 920px) {
  .admin-header,
  .admin-card-head,
  .admin-card-head-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-header-actions,
  .admin-header-links {
    width: 100%;
    justify-items: stretch;
    justify-content: flex-start;
  }

  .admin-primary-button,
  .admin-header-links .header-button,
  .admin-toolbar,
  .admin-search {
    width: 100%;
  }

  .admin-overview-grid,
  .admin-kpi-grid,
  .admin-focus-grid,
  .admin-settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-dashboard {
    padding: 6px;
  }

  .admin-sidebar,
  .admin-header,
  .admin-card,
  .admin-kpi-card,
  .admin-metric-card {
    border-radius: 20px;
  }

  .admin-header,
  .admin-card,
  .admin-kpi-card,
  .admin-metric-card,
    .admin-sidebar {
    padding: 18px;
  }
}

/* Mobile admin app polish */
.admin-header-copy h1 {
  letter-spacing: 0;
}

@media (max-width: 760px) {
  body.admin-page {
    overflow-x: hidden;
    background: #07110f;
  }

  .admin-page {
    --admin-bg: #07110f;
    --admin-panel: rgba(10, 17, 24, 0.9);
    --admin-panel-strong: #0f1821;
    --admin-panel-soft: #142333;
    --admin-border: rgba(168, 193, 184, 0.16);
    --admin-text: #f4f8f6;
    --admin-muted: #9fb1bf;
    --admin-accent: #35d399;
    --admin-accent-strong: #3b82f6;
  }

  .admin-page .page-bg {
    background:
      linear-gradient(135deg, rgba(53, 211, 153, 0.1) 0 1px, transparent 1px 22px),
      linear-gradient(180deg, #07110f 0%, #0a141b 42%, #101527 100%);
  }

  .admin-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 100vh;
    padding: calc(12px + env(safe-area-inset-top)) 14px 28px;
  }

  .admin-sidebar {
    position: sticky;
    top: 12px;
    z-index: 20;
    height: auto;
    margin: 0;
    padding: 12px;
    border-width: 1px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(10, 17, 24, 0.98), rgba(10, 17, 24, 0.86)),
      var(--admin-panel);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    gap: 10px;
  }

  .admin-sidebar-brand {
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(53, 211, 153, 0.1), rgba(59, 130, 246, 0.09)),
      rgba(255, 255, 255, 0.035);
  }

  .admin-sidebar-logo {
    width: 44px;
    height: 44px;
  }

  .admin-sidebar-brand strong {
    font-size: 1rem;
    line-height: 1.1;
  }

  .admin-sidebar-brand span {
    margin-top: 2px;
    font-size: 0.82rem;
  }

  .admin-sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    margin: 0 -2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .admin-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .admin-nav-link {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    scroll-snap-align: start;
    color: #d8e3ee;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .admin-nav-link:hover,
  .admin-nav-link.is-active {
    color: #ffffff;
    border-color: rgba(53, 211, 153, 0.32);
    background: linear-gradient(135deg, rgba(53, 211, 153, 0.2), rgba(59, 130, 246, 0.18));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 24px rgba(59, 130, 246, 0.16);
  }

  .admin-sidebar-status {
    padding: 11px 12px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(53, 211, 153, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.025);
  }

  .admin-sidebar-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .admin-sidebar-status strong {
    margin-top: 4px;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .admin-sidebar-status p {
    margin-top: 5px;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .admin-main {
    gap: 14px;
    padding: 0;
  }

  .admin-sidebar,
  .admin-header,
  .admin-card,
  .admin-kpi-card,
  .admin-metric-card {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  }

  .admin-header {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(53, 211, 153, 0.14), rgba(59, 130, 246, 0.12) 44%, rgba(255, 255, 255, 0.025)),
      var(--admin-panel);
  }

  .admin-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .admin-header-copy h1 {
    margin-top: 8px;
    font-size: clamp(1.64rem, 8vw, 2.1rem);
    line-height: 1.05;
  }

  .admin-header-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .admin-header-actions {
    display: grid;
    gap: 8px;
    justify-items: stretch;
  }

  .admin-primary-button {
    min-height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #35d399, #38bdf8 50%, #4f46e5);
    box-shadow: 0 16px 28px rgba(56, 189, 248, 0.18);
  }

  .admin-header-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .admin-header-links::-webkit-scrollbar {
    display: none;
  }

  .admin-header-links .header-button {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    color: #e8f0f6;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .admin-header-links .session-badge {
    flex: 0 0 min(220px, 72vw);
    min-width: 0;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(6, 12, 18, 0.7);
    border-color: rgba(53, 211, 153, 0.18);
  }

  .session-badge-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .admin-metric-card {
    min-height: 132px;
    padding: 16px;
    border-radius: 20px;
  }

  .admin-metric-card strong {
    font-size: clamp(1.7rem, 10vw, 2.35rem);
  }

  .admin-metric-card small {
    line-height: 1.45;
  }

  .admin-note-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .admin-kpi-card,
  .admin-card {
    padding: 16px;
    border-radius: 20px;
  }

  .admin-kpi-card {
    min-height: 138px;
  }

  .admin-kpi-card strong {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .admin-kpi-card small {
    line-height: 1.45;
  }

  .admin-focus-grid,
  .admin-settings-grid {
    gap: 12px;
  }

  .admin-card-head,
  .admin-card-head-wide {
    gap: 12px;
  }

  .admin-card-head h2 {
    font-size: 1.28rem;
    line-height: 1.2;
  }

  .admin-badge,
  .admin-pill {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .admin-spotlight-list,
  .admin-guidance-list,
  .admin-settings-form {
    gap: 10px;
    margin-top: 14px;
  }

  .admin-spotlight-item,
  .admin-guidance-item {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .admin-spotlight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    text-align: left;
    gap: 10px;
  }

  .admin-toolbar,
  .admin-search {
    width: 100%;
  }

  .admin-search {
    min-width: 0;
    min-height: 48px;
    border-radius: 14px;
    background: rgba(6, 12, 18, 0.72);
  }

  .admin-table-shell {
    overflow: visible;
    border: 0;
    background: transparent;
    margin-top: 14px;
  }

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody {
    display: grid;
    gap: 12px;
  }

  .admin-table tr {
    overflow: hidden;
    border: 1px solid rgba(168, 193, 184, 0.13);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
      rgba(7, 13, 20, 0.82);
  }

  .admin-table td {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .admin-table td:last-child {
    border-bottom: 0;
  }

  .admin-table td::before {
    color: var(--admin-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  #usersSection .admin-table td:nth-child(1)::before {
    content: "Kullanıcı";
  }

  #usersSection .admin-table td:nth-child(2)::before {
    content: "Giriş Yöntemi";
  }

  #usersSection .admin-table td:nth-child(3)::before {
    content: "Rol";
  }

  #usersSection .admin-table td:nth-child(4)::before {
    content: "Kayıt";
  }

  #usersSection .admin-table td:nth-child(5)::before {
    content: "İşlem";
  }

  #analysesSection .admin-table td:nth-child(1)::before {
    content: "Dosya";
  }

  #analysesSection .admin-table td:nth-child(2)::before {
    content: "Kullanıcı";
  }

  #analysesSection .admin-table td:nth-child(3)::before {
    content: "Durum";
  }

  #analysesSection .admin-table td:nth-child(4)::before {
    content: "Mesaj";
  }

  #analysesSection .admin-table td:nth-child(5)::before {
    content: "Katılımcı";
  }

  #analysesSection .admin-table td:nth-child(6)::before {
    content: "Tarih";
  }

  #supportSection .admin-table td:nth-child(1)::before {
    content: "Gönderen";
  }

  #supportSection .admin-table td:nth-child(2)::before {
    content: "Mesaj";
  }

  #supportSection .admin-table td:nth-child(3)::before {
    content: "Durum";
  }

  #supportSection .admin-table td:nth-child(4)::before {
    content: "Tarih";
  }

  #supportSection .admin-table td:nth-child(5)::before {
    content: "İşlem";
  }

  .admin-table-user {
    min-width: 0;
  }

  .admin-table-user span,
  .admin-message-cell {
    overflow-wrap: anywhere;
  }

  .admin-row-actions {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .admin-support-reply {
    min-width: 0;
  }

  .admin-row-button {
    min-height: 40px;
    flex: 1 1 120px;
    border-radius: 12px;
  }

  .admin-toggle-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .admin-toggle-row p {
    line-height: 1.45;
  }

  .admin-settings-form textarea {
    min-height: 112px;
    border-radius: 14px;
  }

  .admin-form-actions {
    display: grid;
    gap: 10px;
  }

  .admin-submit-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .admin-dashboard {
    padding-inline: 12px;
  }

  .admin-sidebar {
    top: 10px;
    padding-inline: 11px;
  }

  .admin-overview-grid,
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-header {
    padding: 18px;
  }
}
