@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --panel: #121212;
  --panel-alt: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --gold: #f5c849;
  --gold-strong: #ffd04d;
  --gold-soft: rgba(245, 200, 73, 0.12);
  --text: #f5f2eb;
  --text-soft: rgba(245, 242, 235, 0.72);
  --muted: rgba(245, 242, 235, 0.44);
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "Barlow Condensed", "Arial Narrow", sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
  --gold-glow: rgba(245, 200, 73, 0.28);
}

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

html {
  scroll-behavior: smooth;
  background: #050505;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -2%, rgba(245, 200, 73, 0.18), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.05), transparent 16%),
    linear-gradient(180deg, #050505 0%, #080808 46%, #090909 100%);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.17;
  mask-image: linear-gradient(180deg, black 0%, black 60%, transparent 100%);
  animation: gridDrift 30s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 200, 73, 0.12), transparent 18%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
}

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

button,
input,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.46));
  backdrop-filter: blur(22px);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-header::before {
  top: 0;
  height: 100%;
  background:
    radial-gradient(circle at 50% -40%, rgba(245, 200, 73, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 70%);
  opacity: 0.72;
}

.site-header::after {
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 200, 73, 0.14) 18%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(245, 200, 73, 0.14) 82%,
    transparent 100%
  );
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.site-header__inner::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 8px;
  height: 30px;
  background: radial-gradient(circle, rgba(245, 200, 73, 0.22), transparent 72%);
  filter: blur(24px);
  opacity: 0.74;
  pointer-events: none;
  z-index: 0;
}

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

.brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 240, 198, 0.28), transparent),
    linear-gradient(135deg, #ffd04d, #d69f1a);
  color: #0c0c0c;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 18px 38px rgba(245, 200, 73, 0.18);
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__wordmark strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: capitalize;
}

.brand__wordmark span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 200, 73, 0.8), transparent);
  opacity: 0;
  transform: scaleX(0.55);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--text);
  text-shadow: 0 0 24px rgba(245, 200, 73, 0.14);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link--heart {
  min-width: 34px;
  padding-inline: 10px;
  border: 1px solid rgba(245, 200, 73, 0.16);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  box-shadow: 0 0 24px rgba(245, 200, 73, 0.05);
}

.nav-link--heart::after {
  display: none;
}

.nav-link--heart.is-active,
.nav-link--heart:hover {
  border-color: rgba(245, 200, 73, 0.36);
  background: rgba(245, 200, 73, 0.08);
  color: var(--gold-strong);
}

.category-dock {
  position: sticky;
  top: 82px;
  z-index: 18;
  border-top: 1px solid rgba(245, 200, 73, 0.08);
  border-bottom: 1px solid rgba(245, 200, 73, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 73, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(8, 8, 8, 0.82));
  backdrop-filter: blur(18px);
}

.category-dock__inner {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-dock__inner::-webkit-scrollbar {
  display: none;
}

.category-dock__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(245, 200, 73, 0.1);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.94);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-dock__link:hover,
.category-dock__link.is-active {
  border-color: rgba(245, 200, 73, 0.42);
  background: linear-gradient(135deg, #ffd04d, #f1bb34);
  color: #090909;
  box-shadow:
    0 0 0 1px rgba(245, 200, 73, 0.03) inset,
    0 14px 34px rgba(245, 200, 73, 0.08);
  transform: translateY(-1px);
}

.category-dock__link--all {
  color: var(--gold);
}

.header-actions,
.hero__actions,
.community-card__actions,
.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header-actions {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.filter-chip:hover,
.category-card-home:hover,
.save-link:hover,
.row-link:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #ffd04d, #f1bb34);
  color: #0b0b0b;
  box-shadow: 0 10px 34px rgba(245, 200, 73, 0.22);
}

.button--secondary {
  border-color: rgba(245, 200, 73, 0.3);
  background: rgba(245, 200, 73, 0.08);
  color: var(--text);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button--small {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
}

.button--heart {
  width: 48px;
  min-width: 48px;
  padding: 0;
  border-color: rgba(245, 200, 73, 0.2);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 0 26px rgba(245, 200, 73, 0.06);
}

.button--heart:hover {
  border-color: rgba(245, 200, 73, 0.42);
  background: rgba(245, 200, 73, 0.08);
  color: var(--gold-strong);
}

.button--heart.is-active {
  border-color: rgba(245, 200, 73, 0.48);
  background: rgba(245, 200, 73, 0.12);
  color: var(--gold-strong);
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.social-button:hover,
.hero-socials a:hover,
.seo-panel__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 200, 73, 0.28);
  background: rgba(245, 200, 73, 0.07);
  color: var(--text);
}

.floating-socials {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 16;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 200, 73, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(8, 8, 8, 0.9);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(245, 200, 73, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.floating-socials a:hover {
  transform: translateX(-3px);
  border-color: rgba(245, 200, 73, 0.48);
  background: rgba(245, 200, 73, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 16px 0 10px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero::before {
  top: -140px;
  height: 560px;
  background: radial-gradient(circle at 50% 42%, rgba(245, 200, 73, 0.12), transparent 44%);
  filter: blur(34px);
  animation: haloDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  top: 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%);
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  isolation: isolate;
  padding: 44px 0 30px;
  text-align: left;
}

.hero__inner::before {
  content: "";
  position: absolute;
  left: 58%;
  top: 10px;
  width: min(880px, 74vw);
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 243, 199, 0.18), transparent 22%),
    radial-gradient(circle at 50% 48%, rgba(245, 200, 73, 0.24), rgba(245, 200, 73, 0.08) 38%, transparent 72%);
  filter: blur(44px);
  opacity: 0.92;
  animation: glowFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero__inner::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 34px;
  width: min(980px, 86vw);
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 46%, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.12) 46%, rgba(8, 8, 8, 0.82) 92%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner > *:not(.hero__ambient) {
  position: relative;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero__copy {
  position: relative;
  max-width: 760px;
}

.hero__ambient {
  position: absolute;
  inset: -44px -6% auto;
  height: 520px;
  pointer-events: none;
  z-index: 0;
}

.hero-orb,
.hero-beam,
.hero-rings {
  position: absolute;
}

.hero-orb {
  border-radius: 999px;
  mix-blend-mode: screen;
}

.hero-orb--left {
  left: 4%;
  top: 118px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 200, 73, 0.26), rgba(245, 200, 73, 0.05) 58%, transparent 74%);
  filter: blur(56px);
  animation: orbFloatLeft 18s ease-in-out infinite;
}

.hero-orb--center {
  left: 50%;
  top: 18px;
  width: 620px;
  height: 340px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 246, 220, 0.16), transparent 28%),
    radial-gradient(circle at 50% 54%, rgba(245, 200, 73, 0.24), rgba(245, 200, 73, 0.05) 54%, transparent 74%);
  filter: blur(66px);
  animation: orbPulse 12s ease-in-out infinite alternate;
}

.hero-orb--right {
  right: 7%;
  top: 88px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(245, 200, 73, 0.04) 56%, transparent 74%);
  filter: blur(50px);
  animation: orbFloatRight 20s ease-in-out infinite;
}

.hero-beam {
  left: 50%;
  top: 204px;
  width: min(780px, 76vw);
  height: 96px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 200, 73, 0.14),
    rgba(255, 255, 255, 0.16),
    rgba(245, 200, 73, 0.14),
    transparent
  );
  filter: blur(34px);
  opacity: 0.94;
  animation: beamPulse 9s ease-in-out infinite;
}

.hero-rings {
  left: 12%;
  right: 12%;
  top: 22px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(245, 200, 73, 0.03) inset,
    0 0 48px rgba(245, 200, 73, 0.04);
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.94), transparent 92%);
  animation: ringsShift 24s linear infinite;
}

.hero-badge,
.status-pill,
.table-pill,
.tag-pill,
.active-pill,
.table-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge {
  border: 1px solid rgba(245, 200, 73, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(245, 200, 73, 0.08);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.hero h1,
.section-head h2,
.featured-card h3,
.community-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(2.55rem, 4.7vw, 5rem);
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.05);
}

.hero h1 .hero-line {
  display: block;
}

.hero h1 .hero-line + .hero-line {
  margin-top: 4px;
}

.hero h1 .hero-line--gold {
  background: linear-gradient(90deg, #fff1c0 0%, #ffd04d 28%, #fff4cf 52%, #ffd04d 76%, #fff1c0 100%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: titleSweep 8s linear infinite;
}

.hero__lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  letter-spacing: 0.02em;
}

.hero__actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.hero-search {
  max-width: none;
  margin: 0;
}

.search-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(13, 13, 13, 0.88);
  box-shadow: var(--shadow);
}

.search-shell--hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(17, 17, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 26px 80px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(245, 200, 73, 0.08);
}

.search-shell__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

.search-shell input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.quick-chip-row,
.chip-scroll,
.active-filter-row,
.featured-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-chip-row {
  justify-content: flex-start;
  margin-top: 14px;
}

.hero-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-socials span {
  margin-right: 4px;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.hero__finder {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 0%, rgba(245, 200, 73, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 28%),
    rgba(15, 15, 15, 0.9);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 64px rgba(245, 200, 73, 0.08);
}

.hero__finder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 28%, black, transparent 78%);
  opacity: 0.32;
  pointer-events: none;
}

.hero__finder::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 77, 0.75), transparent);
  opacity: 0.72;
}

.finder-panel__top,
.finder-category-row,
.finder-commission-note {
  position: relative;
  z-index: 1;
}

.finder-panel__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.finder-panel__top span,
.finder-panel__top small {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.finder-panel__top strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.finder-panel__top small {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(245, 200, 73, 0.18);
  border-radius: 999px;
  background: rgba(245, 200, 73, 0.08);
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.filter-chip.is-active {
  border-color: rgba(245, 200, 73, 0.3);
  background: rgba(245, 200, 73, 0.09);
  color: var(--text);
}

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

.hero-preview-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 244px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 52% 0%, rgba(245, 200, 73, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%),
    rgba(9, 9, 9, 0.76);
  text-align: left;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  animation: productFloat 6s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.hero-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 200, 73, 0.24);
  background-color: rgba(245, 200, 73, 0.055);
  animation-play-state: paused;
}

.hero-preview-card__badge {
  position: absolute;
  z-index: 2;
}

.hero-preview-card__badge {
  top: 12px;
  right: 12px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd04d, #f1bb34);
  color: #090909;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 28px;
  text-transform: uppercase;
}

.hero-preview-card__image,
.sheet-thumb,
.featured-card__media {
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #242424, #101010);
}

.hero-preview-card__image {
  width: 100%;
  height: 132px;
}

.hero-preview-card__image img,
.sheet-thumb img,
.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-preview-card__copy {
  display: grid;
  gap: 6px;
}

.hero-preview-card__copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-preview-card__copy span,
.hero-preview-card__fallback,
.sheet-thumb__fallback,
.featured-card__fallback,
.category-card-home__fallback {
  color: var(--text-soft);
}

.hero-preview-card__fallback,
.sheet-thumb__fallback,
.featured-card__fallback,
.category-card-home__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-preview-card__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd04d, #f1bb34);
  color: #090909 !important;
  font-family: var(--mono);
  font-size: 0.64rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-category-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.finder-category-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.finder-category-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 200, 73, 0.26);
  background: rgba(245, 200, 73, 0.08);
  color: var(--text);
}

.finder-commission-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(245, 200, 73, 0.14);
  border-radius: 16px;
  background: rgba(245, 200, 73, 0.055);
}

.finder-commission-note span {
  flex: 0 0 auto;
  color: var(--gold-strong);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(245, 200, 73, 0.2);
}

.finder-commission-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.metric-item {
  padding: 24px 18px;
  text-align: center;
}

.metric-item + .metric-item {
  border-left: 1px solid var(--line-soft);
}

.metric-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.07em;
}

.metric-item span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section--band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 22%);
}

.section {
  position: relative;
  z-index: 1;
  padding: 46px 0;
  border-top: 1px solid var(--line-soft);
}

.section--tight {
  padding-top: 38px;
}

.section--sheet {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%);
}

.section--seo {
  padding-top: 30px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.section-head p,
.page-hero__copy,
.community-card p,
.site-footer__copy {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--text-soft);
}

.spreadsheet-band,
.page-hero {
  position: relative;
}

.seo-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 200, 73, 0.09), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01));
}

.seo-panel h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.seo-panel p {
  max-width: 76ch;
  margin: 16px 0 0;
  color: var(--text-soft);
}

.seo-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-panel__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245, 200, 73, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 200, 73, 0.05);
  font-weight: 700;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.spreadsheet-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 200, 73, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.spreadsheet-band h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.spreadsheet-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.spreadsheet-band p {
  margin: 12px 0 0;
  max-width: 60ch;
  color: var(--text-soft);
}

.spreadsheet-band__actions,
.page-actions,
.featured-card__subactions,
.social-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .page-hero__copy {
  margin-inline: auto;
}

.page-hero--discover {
  padding: 28px 0 18px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
}

.discover-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.discover-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding-top: 10px;
}

.discover-console {
  padding: 18px;
  border: 1px solid rgba(245, 200, 73, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 73, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 26px 70px rgba(0, 0, 0, 0.34);
}

.quick-chip-row--discover {
  justify-content: flex-start;
}

.filter-stack--discover {
  margin-top: 18px;
}

.section--discover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 20%);
}

.section-head--discover {
  align-items: center;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.page-actions {
  margin-top: 24px;
}

.mini-link,
.save-link,
.row-link {
  color: var(--gold);
  font-weight: 700;
}

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

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

.featured-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.featured-card__media {
  position: relative;
  height: 320px;
}

.featured-card__media-link,
.sheet-thumb--link {
  display: block;
  color: inherit;
}

.featured-card__media-link:hover img,
.sheet-thumb--link:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.featured-card__body {
  padding: 16px;
}

.tag-pill {
  min-height: 28px;
  padding: 0 10px;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.tag-pill--0 {
  background: rgba(255, 98, 76, 0.16);
  color: #ff9a8a;
}

.tag-pill--1 {
  background: rgba(84, 211, 146, 0.16);
  color: #79dfab;
}

.tag-pill--2 {
  background: rgba(245, 200, 73, 0.16);
  color: var(--gold);
}

.featured-card__category {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.featured-card h3 {
  margin-top: 6px;
  font-size: 1.36rem;
  line-height: 1.06;
}

.featured-card__meta,
.featured-card__actions,
.site-footer__inner,
.footer-links,
.section-status,
.sheet-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-card__meta {
  margin-top: 14px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.featured-card__meta .commission-meter {
  margin-left: auto;
}

.featured-card__actions {
  justify-content: space-between;
  margin-top: 14px;
}

.featured-card__subactions {
  justify-content: flex-end;
}

.save-link {
  border: 0;
  background: transparent;
  padding: 0;
}

.category-grid-home {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 4px 14px;
  margin-inline: -4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.category-grid-home::-webkit-scrollbar {
  display: none;
}

.category-card-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 min(250px, 72vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  gap: 6px;
  min-height: 196px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 200, 73, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  text-align: left;
}

.category-card-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.8) 72%),
    radial-gradient(circle at 20% 0%, rgba(245, 200, 73, 0.16), transparent 48%);
}

.category-card-home__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, #222, #090909);
}

.category-card-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: grayscale(0.14) saturate(0.88) contrast(1.05);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.category-card-home:hover .category-card-home__media img {
  opacity: 0.82;
  transform: scale(1.05);
  filter: grayscale(0) saturate(1.04) contrast(1.08);
}

.category-card-home__content {
  display: grid;
  gap: 6px;
  max-width: 100%;
}

.category-card-home strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.category-card-home span {
  color: var(--text-soft);
}

.category-card-home p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-grid-home--hub .category-card-home {
  min-height: 240px;
}

.category-grid-home--hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
  margin-inline: 0;
  scroll-snap-type: none;
}

.category-grid-home--hub .category-card-home {
  flex-basis: auto;
}

.category-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

.category-link.is-active {
  border-color: rgba(245, 200, 73, 0.28);
  background: rgba(245, 200, 73, 0.08);
  color: var(--text);
}

.section-status {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.status-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

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

.sheet-toolbar__meta {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sheet-count {
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sort-shell select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  outline: 0;
}

.filter-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.filter-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.filter-row__label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip-scroll {
  overflow-x: auto;
  padding-bottom: 2px;
}

.active-filter-row {
  margin-top: 18px;
}

.active-pill {
  border: 1px solid rgba(245, 200, 73, 0.26);
  background: rgba(245, 200, 73, 0.09);
  color: var(--text);
}

.sheet-shell {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(13, 13, 13, 0.84);
}

.sheet-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.sheet-subtle {
  color: var(--muted);
  font-size: 0.88rem;
}

.sheet-table__head,
.sheet-row {
  display: grid;
  grid-template-columns: minmax(360px, 2.4fr) 1fr 0.78fr 1.1fr 0.92fr 1.04fr;
  gap: 16px;
  align-items: center;
}

.sheet-table__head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sheet-row {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.sheet-row:last-child {
  border-bottom: 0;
}

.sheet-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sheet-cell strong,
.sheet-item-copy strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.sheet-cell span,
.sheet-item-copy span {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.sheet-cell--item {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.sheet-thumb {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.sheet-item-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.sheet-cell--actions {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sheet-cell--commission {
  justify-content: center;
}

.commission-meter {
  display: grid;
  gap: 8px;
}

.commission-meter--compact {
  display: inline-grid;
  gap: 4px;
}

.commission-meter__marks {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.commission-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1;
  transform: translateY(-1px);
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.commission-mark.is-filled {
  color: var(--gold-strong);
  text-shadow:
    0 0 10px rgba(245, 200, 73, 0.34),
    0 0 22px rgba(245, 200, 73, 0.16);
}

.commission-meter__label {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commission-meter--compact .commission-mark {
  min-width: 10px;
  font-size: 1rem;
}

.commission-meter--compact .commission-meter__label {
  font-size: 0.64rem;
}

.commission-meter--4 .commission-mark.is-filled,
.commission-meter--5 .commission-mark.is-filled {
  transform: translateY(-2px) scale(1.08);
}

.sheet-empty--panel {
  grid-column: 1 / -1;
  min-height: 220px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.table-pill {
  justify-content: start;
  padding: 0;
  min-height: auto;
  border: 0;
  color: var(--gold);
}

.table-status {
  min-height: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.table-status.is-live {
  border-color: rgba(84, 211, 146, 0.26);
  background: rgba(84, 211, 146, 0.12);
  color: #85e3b3;
}

.row-link {
  border: 0;
  background: transparent;
  padding: 0;
}

.row-link--muted {
  color: var(--text-soft);
}

.row-link--muted:hover,
.category-link:hover {
  color: var(--text);
}

.sheet-empty {
  display: grid;
  gap: 8px;
  padding: 28px 20px;
  text-align: center;
}

.sheet-empty span {
  color: var(--text-soft);
}

.results-actions {
  justify-content: center;
  margin-top: 22px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.community-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 200, 73, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

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

.community-card--cta {
  justify-content: center;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 18px;
}

.report-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 200, 73, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.report-form {
  display: grid;
  gap: 14px;
}

.report-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form-status--success {
  color: #8ce3b6;
}

.form-status--error {
  color: #ff8f84;
}

.button--submitting {
  opacity: 0.76;
}

.button--success {
  background: rgba(84, 211, 146, 0.16);
  border-color: rgba(84, 211, 146, 0.4);
  color: #8ce3b6;
}

.button--error {
  background: rgba(255, 98, 76, 0.14);
  border-color: rgba(255, 98, 76, 0.32);
  color: #ffaea4;
}

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

.report-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.report-card strong {
  display: block;
}

.report-card p,
.empty-note p {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.report-card span {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.empty-note {
  color: var(--text-soft);
}

.report-socials {
  margin-top: 24px;
}

.container--narrow {
  max-width: 860px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #151515;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.26rem);
  letter-spacing: -0.04em;
  text-align: left;
  text-transform: uppercase;
}

.faq-item button span {
  color: var(--gold-strong);
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-soft);
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open button span {
  transform: rotate(180deg);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 40px;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(245, 200, 73, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(245, 200, 73, 0.08), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: 0.78;
  pointer-events: none;
}

.legal-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.legal-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.legal-orbit {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(245, 200, 73, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 200, 73, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.legal-orbit__ring {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(245, 200, 73, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: legalPulse 4.8s ease-in-out infinite;
}

.legal-orbit__ring::before,
.legal-orbit__ring::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.legal-orbit__ring::before {
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-orbit__ring::after {
  top: 14px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--gold-strong);
  box-shadow: 0 0 26px rgba(245, 200, 73, 0.55);
  transform: translateX(-50%);
}

.legal-orbit strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-hero__copy h1 span,
.legal-orbit strong span {
  display: block;
}

.legal-orbit > span {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
}

.legal-orbit__checks,
.legal-scan-list {
  display: grid;
  gap: 10px;
}

.legal-orbit__checks span,
.legal-scan-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(245, 200, 73, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-orbit__checks span::before,
.legal-scan-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 14px rgba(245, 200, 73, 0.55);
}

.section--legal {
  padding-top: 34px;
}

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

.legal-signal-card,
.legal-feature-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 200, 73, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
}

.legal-signal-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
}

.legal-signal-card--gold {
  border-color: rgba(245, 200, 73, 0.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 73, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(245, 200, 73, 0.09), rgba(255, 255, 255, 0.014));
}

.legal-signal-card span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.legal-signal-card strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.legal-signal-card p,
.legal-feature-panel p {
  margin: 0;
  color: var(--text-soft);
}

.legal-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: clamp(22px, 4vw, 38px);
}

.legal-feature-panel h2 {
  max-width: 620px;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.8vw, 4.9rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-head--legal h2 {
  margin-bottom: 8px;
}

.legal-faq-list .faq-item {
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 200, 73, 0.08), transparent 38%),
    #151515;
}

@keyframes legalPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 52px;
  border-top: 1px solid rgba(245, 200, 73, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 200, 73, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(245, 200, 73, 0.12), rgba(0, 0, 0, 0) 42%),
    #090909;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  justify-content: space-between;
  align-items: start;
}

.site-footer__copy {
  max-width: 44ch;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  padding: 14px 16px;
  border: 1px solid rgba(245, 200, 73, 0.24);
  border-radius: 14px;
  background: rgba(14, 14, 14, 0.95);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

/* Professional revamp layer: product-led, cleaner, and closer to a premium link finder. */
.site-header {
  background: rgba(3, 3, 3, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.site-header::before {
  opacity: 0.28;
}

.site-header__inner {
  min-height: 76px;
}

.site-header__inner::after {
  display: none;
}

.brand__wordmark strong {
  color: var(--gold-strong);
  font-size: 1.08rem;
  font-style: italic;
  letter-spacing: -0.09em;
  text-transform: none;
}

.brand__wordmark span,
.nav-link,
.eyebrow,
.sheet-count,
.filter-row__label,
.footer-column strong,
.footer-column a {
  font-family: var(--mono);
  font-weight: 800;
}

.nav-link {
  font-size: 0.83rem;
  letter-spacing: 0.12em;
}

.button {
  border-radius: 9px;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button--primary {
  background: linear-gradient(135deg, #ffd64d, #f2b624);
  box-shadow: 0 18px 44px rgba(245, 200, 73, 0.18);
}

.button--secondary {
  border-color: rgba(245, 200, 73, 0.46);
  color: var(--gold-strong);
}

.button--heart {
  margin-left: auto;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 1.2rem;
}

.floating-socials a {
  font-family: var(--body);
  font-size: 1.13rem;
  letter-spacing: 0;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 0;
}

.hero__inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 148px);
  padding: clamp(34px, 5vw, 70px) 0 34px;
}

.hero__inner::before {
  left: 42%;
  top: 48%;
  width: min(760px, 64vw);
  height: 520px;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 236, 162, 0.2), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(245, 200, 73, 0.26), rgba(245, 200, 73, 0.08) 36%, transparent 70%);
  filter: blur(72px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
}

.hero__inner::after {
  display: none;
}

.hero__layout {
  width: 100%;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.hero-badge {
  border-color: rgba(245, 200, 73, 0.42);
  background: rgba(245, 200, 73, 0.08);
  color: var(--gold-strong);
}

.hero h1 {
  max-width: 740px;
  margin-top: 24px;
  font-size: clamp(3.8rem, 7.4vw, 7.8rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 .hero-line + .hero-line {
  margin-top: 10px;
}

.hero h1 .hero-line--gold {
  background: linear-gradient(90deg, #ffd64d 0%, #fff2bd 42%, #ffd64d 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 500px;
  font-size: 1.05rem;
}

.hero__finder {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__finder::before,
.hero__finder::after,
.finder-commission-note {
  display: none;
}

.finder-panel__top {
  align-items: center;
  margin-bottom: 18px;
}

.finder-panel__top strong {
  font-size: 1.55rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.finder-panel__top small {
  border-radius: 8px;
}

.hero-preview-grid {
  gap: 22px;
  margin-top: 0;
}

.hero-preview-card {
  min-height: 378px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    #151515;
}

.hero-preview-card:nth-child(2),
.hero-preview-card:nth-child(4) {
  transform: translateY(34px);
}

.hero-preview-card:nth-child(2):hover,
.hero-preview-card:nth-child(4):hover {
  transform: translateY(26px);
}

.hero-preview-card__badge {
  border-radius: 8px;
  background: #ffd64d;
}

.hero-preview-card__image {
  height: 220px;
  border-radius: 14px;
  background: transparent;
}

.hero-preview-card__image img {
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.34));
}

.hero-preview-card__copy strong,
.featured-card h3 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-preview-card__open {
  border-radius: 8px;
}

.finder-category-row {
  margin-top: 22px;
}

.finder-category-row a,
.filter-chip,
.category-link {
  border-radius: 8px;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-strip {
  margin-top: 0;
}

.section {
  padding: 64px 0;
}

.section-head h2,
.seo-panel h2,
.spreadsheet-band h2,
.page-hero h1,
.community-card h3 {
  font-family: var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

.section-head p,
.page-hero__copy,
.community-card p,
.site-footer__copy {
  font-size: 1rem;
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.featured-grid--discover {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-card {
  border-radius: 16px;
  background: #151515;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 200, 73, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.featured-card__media {
  height: 280px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    #101010;
}

.featured-card__media img {
  object-fit: contain;
  padding: 22px;
}

.featured-card h3 {
  min-height: 3em;
  font-size: 1.05rem;
  line-height: 1.04;
}

.featured-card__category {
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-card__actions {
  align-items: end;
}

.save-link--heart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(245, 200, 73, 0.18);
  border-radius: 999px;
  background: rgba(245, 200, 73, 0.08);
  color: var(--gold-strong);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card-home {
  min-height: 230px;
  border-radius: 16px;
}

.category-card-home strong {
  font-size: 2.45rem;
  text-transform: uppercase;
}

.sheet-table__head,
.sheet-row {
  grid-template-columns: minmax(360px, 2.5fr) 1fr 0.74fr 1fr 0.92fr 1.12fr;
}

.sheet-row {
  background: rgba(255, 255, 255, 0.012);
}

.sheet-thumb {
  width: 112px;
  height: 112px;
  background: #111;
}

.sheet-thumb img {
  object-fit: contain;
  padding: 10px;
}

.sheet-cell--signals {
  justify-content: center;
}

.site-footer {
  padding: 58px 0;
  border-top-color: rgba(245, 200, 73, 0.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 200, 73, 0.22), transparent 32%),
    linear-gradient(135deg, #1a1404 0%, #090909 44%, #050505 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 44px;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.site-footer__legal {
  max-width: 64ch;
  margin: 0;
  color: rgba(245, 242, 235, 0.42);
  font-size: 0.72rem;
  line-height: 1.55;
}

.site-footer__legal--compact {
  max-width: 62ch;
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(245, 242, 235, 0.62);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--gold-strong);
}

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

  to {
    background-position: 0 52px, 52px 0;
  }
}

@keyframes haloDrift {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.62;
  }

  to {
    transform: translateY(18px) scale(1.08);
    opacity: 0.92;
  }
}

@keyframes glowFloat {
  from {
    transform: translateX(-50%) translateY(0) scale(0.98);
    opacity: 0.78;
  }

  to {
    transform: translateX(-50%) translateY(16px) scale(1.05);
    opacity: 0.98;
  }
}

@keyframes orbFloatLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(22px, -18px, 0);
  }
}

@keyframes orbPulse {
  from {
    transform: translateX(-50%) scale(0.96);
    opacity: 0.72;
  }

  to {
    transform: translateX(-50%) scale(1.04);
    opacity: 1;
  }
}

@keyframes orbFloatRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 16px, 0);
  }
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.54;
    transform: translateX(-50%) scaleX(0.94);
  }

  50% {
    opacity: 0.94;
    transform: translateX(-50%) scaleX(1.03);
  }
}

@keyframes ringsShift {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.02);
  }
}

@keyframes titleSweep {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 180% 50%;
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

body.js-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .social-button {
    display: none;
  }

  .floating-socials {
    display: none;
  }

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

  .hero__finder {
    max-width: 760px;
    width: 100%;
  }

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

  .discover-intro {
    grid-template-columns: 1fr;
  }

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

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

  .sheet-toolbar,
  .section-head,
  .sheet-headline,
  .site-footer__inner {
    flex-direction: column;
    align-items: start;
  }

  .spreadsheet-band {
    grid-template-columns: 1fr;
  }

  .sheet-toolbar__meta,
  .section-status,
  .footer-links {
    justify-content: flex-start;
  }

  .sheet-table__head,
  .sheet-row {
    grid-template-columns: minmax(280px, 2.1fr) 0.95fr 0.8fr 1fr 0.85fr 1fr;
  }
}

@media (max-width: 840px) {
  .category-dock {
    top: 82px;
  }

  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-link {
    padding: 10px 14px;
  }

  .nav-link::after {
    left: 14px;
    right: 14px;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__inner {
    padding: 34px 0 30px;
  }

  .hero__ambient {
    inset: -32px -18% auto;
    height: 440px;
  }

  .hero-orb--center {
    width: min(540px, 120vw);
  }

  .hero-rings {
    left: 4%;
    right: 4%;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 4.2rem);
  }

  .discover-console {
    padding: 20px;
    border-radius: 20px;
  }

  .discover-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .metric-strip,
  .hero-preview-grid,
  .featured-grid,
  .community-grid,
  .category-grid-home,
  .page-hero__stats,
  .report-layout {
    grid-template-columns: 1fr;
  }

  .metric-item + .metric-item {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

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

  .sheet-table__head {
    display: none;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sheet-cell {
    padding-top: 4px;
  }

  .sheet-cell::before {
    content: attr(data-label);
    margin-bottom: 2px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .sheet-cell--item::before {
    display: none;
  }

  .sheet-cell--actions {
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 20px, 1180px);
  }

  .category-dock__inner {
    min-height: 52px;
  }

  .category-dock__link {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.64rem;
  }

  .header-actions {
    display: flex;
  }

  .header-actions [data-categories-link] {
    display: none;
  }

  .button,
  .button--small {
    width: 100%;
  }

  .header-actions .button,
  .header-actions .button--small {
    width: 44px;
    min-width: 44px;
  }

  .hero__actions,
  .community-card__actions,
  .results-actions,
  .page-actions,
  .spreadsheet-band__actions {
    flex-direction: column;
  }

  .search-shell {
    grid-template-columns: 1fr;
  }

  .search-shell__hint {
    display: none;
  }

  .quick-chip-row {
    justify-content: start;
  }

  .hero__lead,
  .section-head p {
    font-size: 1rem;
  }

  .hero-socials {
    justify-content: flex-start;
  }

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

  .hero-preview-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-preview-card__image {
    width: 100%;
    height: 170px;
  }

  .featured-card__media {
    height: 280px;
  }

  .sheet-thumb {
    width: 78px;
    height: 78px;
  }

  .hero__ambient {
    inset: -22px -28% auto;
  }

  .hero-orb--left,
  .hero-orb--right {
    width: 180px;
    height: 180px;
  }

  .hero-orb--center {
    width: min(420px, 128vw);
    height: 300px;
  }

  .hero-beam {
    width: min(520px, 94vw);
  }

  .category-card-home strong {
    font-size: 1.7rem;
  }

  .community-card,
  .featured-card,
  .sheet-shell,
  .spreadsheet-band,
  .seo-panel,
  .report-panel,
  .stat-card,
  .discover-console {
    border-radius: 18px;
  }

  .report-card {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero-preview-card:nth-child(2),
  .hero-preview-card:nth-child(4),
  .hero-preview-card:nth-child(2):hover,
  .hero-preview-card:nth-child(4):hover {
    transform: none;
  }

  .featured-grid--discover {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-preview-card {
    min-height: 0;
  }

  .hero-preview-card__image {
    height: 210px;
  }

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

/* Fit and polish pass: tighter header, safer hero sizing, and cleaner search stats. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header__inner {
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) 48px;
  min-height: 72px;
}

.brand__badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.brand__wordmark strong {
  font-family: var(--display);
  font-size: 0.98rem;
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand__wordmark span {
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-nav {
  gap: clamp(16px, 2.4vw, 34px);
}

.nav-link {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.nav-link::after {
  height: 2px;
}

.hero {
  min-height: auto;
}

.hero__inner {
  align-items: flex-start;
  min-height: auto;
  padding: clamp(38px, 4.8vw, 58px) 0 26px;
}

.hero__layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(470px, 0.92fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.hero h1 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(3rem, 5.4vw, 5.85rem);
  line-height: 0.86;
}

.hero__lead {
  max-width: 470px;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
}

.hero__actions {
  margin-top: 20px;
}

.hero-socials a,
.social-pill-row a {
  gap: 8px;
}

.social-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.floating-socials a .social-icon,
.footer-socials a .social-icon {
  width: 18px;
  height: 18px;
}

.hero__finder {
  padding-top: 8px;
}

.finder-panel__top {
  align-items: start;
  margin-bottom: 12px;
}

.finder-panel__top strong {
  max-width: 350px;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.06;
}

.search-shell--hero {
  padding: 10px;
  border-radius: 14px;
}

.search-shell__hint {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.quick-chip-row {
  gap: 8px;
  margin-top: 10px;
}

.filter-chip {
  min-height: 34px;
  padding: 0 11px;
  font-size: 0.82rem;
}

.hero-preview-grid {
  gap: 14px;
  margin-top: 16px;
}

.hero-preview-card {
  --card-offset: 0px;
  min-height: 276px;
  padding: 13px;
  border-radius: 14px;
  transform: translateY(var(--card-offset));
  animation: productFloatTight 7s ease-in-out infinite;
}

.hero-preview-card:nth-child(2),
.hero-preview-card:nth-child(4) {
  --card-offset: 10px;
  transform: translateY(var(--card-offset));
}

.hero-preview-card:nth-child(2):hover,
.hero-preview-card:nth-child(4):hover {
  transform: translateY(4px);
}

.hero-preview-card__image {
  height: 138px;
}

.hero-preview-card__copy {
  gap: 5px;
}

.hero-preview-card__copy strong {
  font-size: 0.78rem;
  line-height: 1.1;
}

.hero-preview-card__copy span {
  font-size: 0.76rem;
}

.hero-preview-card__open {
  min-height: 30px;
}

.finder-category-row {
  margin-top: 14px;
}

.metric-strip {
  margin-top: 14px;
}

.metric-item {
  padding: 16px 12px;
}

.metric-item strong {
  font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.metric-item span {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discover-intro {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.discover-copy {
  display: block;
  padding-top: 14px;
}

.page-hero--discover .page-hero__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
  gap: 10px;
  margin-top: 20px;
}

.page-hero--discover .stat-card {
  padding: 13px 14px;
  border-radius: 14px;
}

.page-hero--discover .stat-card strong {
  font-size: 1.34rem;
}

.page-hero--discover .stat-card span {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discover-console {
  padding: 16px;
  border-radius: 16px;
}

.discover-console .search-shell {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 18px 54px rgba(0, 0, 0, 0.26);
}

@keyframes productFloatTight {
  0%,
  100% {
    transform: translateY(var(--card-offset));
  }

  50% {
    transform: translateY(calc(var(--card-offset) - 6px));
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) 48px;
  }

  .discover-intro {
    grid-template-columns: 1fr;
  }

  .page-hero--discover .page-hero__stats {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .hero-preview-card:nth-child(2),
  .hero-preview-card:nth-child(4),
  .hero-preview-card:nth-child(2):hover,
  .hero-preview-card:nth-child(4):hover {
    transform: none;
  }

  .page-hero--discover .page-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .hero-preview-card__image {
    height: 190px;
  }

  .page-hero--discover .page-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Final proportion pass: prevent logo clipping and calm the homepage hero composition. */
.site-header__inner {
  grid-template-columns: max-content minmax(0, 1fr) 48px;
  column-gap: clamp(18px, 2.8vw, 34px);
}

.brand {
  min-width: max-content;
  white-space: nowrap;
}

.brand__wordmark {
  min-width: max-content;
}

.brand__wordmark strong {
  overflow: visible;
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  letter-spacing: -0.012em;
  line-height: 1.08;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 2.1vw, 28px);
}

.nav-link {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  letter-spacing: 0.115em;
}

.hero__inner {
  padding: clamp(30px, 4vw, 48px) 0 20px;
}

.hero__layout {
  grid-template-columns: minmax(310px, 0.74fr) minmax(440px, 0.92fr);
  gap: clamp(26px, 4.4vw, 54px);
  align-items: center;
}

.hero h1 {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(2.85rem, 4.95vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero h1 .hero-line + .hero-line {
  margin-top: 7px;
}

.hero__lead {
  max-width: 450px;
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 18px;
}

.hero__finder {
  padding-top: 0;
}

.finder-panel__top {
  margin-bottom: 10px;
}

.finder-panel__top strong {
  max-width: 330px;
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
}

.hero-preview-grid {
  gap: 12px;
  margin-top: 12px;
}

.hero-preview-card {
  min-height: 248px;
  padding: 12px;
}

.hero-preview-card:nth-child(2),
.hero-preview-card:nth-child(4) {
  --card-offset: 6px;
}

.hero-preview-card:nth-child(2):hover,
.hero-preview-card:nth-child(4):hover {
  transform: translateY(0);
}

.hero-preview-card__image {
  height: 118px;
}

.hero-preview-card__copy strong {
  font-size: 0.74rem;
}

.hero-preview-card__copy span {
  font-size: 0.72rem;
}

.finder-category-row {
  margin-top: 10px;
}

.finder-category-row a {
  min-height: 32px;
  font-size: 0.72rem;
}

.metric-strip {
  margin-top: 8px;
}

.metric-item {
  padding: 14px 10px;
}

.metric-item strong {
  font-size: clamp(1.26rem, 2.4vw, 1.8rem);
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: max-content minmax(0, 1fr) 48px;
    column-gap: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .brand__wordmark strong {
    font-size: 0.84rem;
  }

  .nav-link {
    font-size: 0.66rem;
  }

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

  .hero__copy,
  .hero h1,
  .hero__lead {
    max-width: 720px;
  }

  .hero__finder {
    max-width: 780px;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    grid-template-columns: max-content auto 48px;
  }

  .brand__wordmark strong {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4.05rem);
  }
}

@media (max-width: 640px) {
  .brand__badge {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .brand__wordmark strong {
    font-size: 0.72rem;
  }

  .brand__wordmark span {
    font-size: 0.48rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .hero-preview-card__image {
    height: 170px;
  }
}

/* Header brand lockup: full DHgate Spreadsheet name, sized instead of renamed. */
.site-header .brand {
  gap: 9px;
}

.site-header .brand__wordmark {
  gap: 2px;
  min-width: 92px;
}

.site-header .brand__wordmark strong {
  font-family: var(--display);
  font-size: clamp(0.84rem, 0.96vw, 0.94rem);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.site-header .brand__wordmark span {
  color: rgba(245, 242, 235, 0.64);
  font-family: var(--body);
  font-size: clamp(0.48rem, 0.58vw, 0.56rem);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge {
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 5.05vw, 5.4rem);
  line-height: 0.84;
}

.hero h1 .hero-line {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .site-header .brand {
    gap: 7px;
  }

  .site-header .brand__wordmark {
    min-width: 78px;
  }

  .site-header .brand__wordmark strong {
    font-size: 0.76rem;
  }

  .site-header .brand__wordmark span {
    font-size: 0.42rem;
    letter-spacing: 0.06em;
  }

  .hero-badge {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(2.16rem, 10.6vw, 3.05rem);
    line-height: 0.88;
  }
}

/* Proportion repair: keep the original DHgate Spreadsheet wording, but make the layout fit. */
.hero__layout {
  grid-template-columns: minmax(520px, 1fr) minmax(390px, 0.82fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}

.hero__copy {
  z-index: 1;
  min-width: 0;
  max-width: 680px;
  padding-right: clamp(8px, 1.8vw, 24px);
}

.hero h1 {
  max-width: 680px;
  font-family: var(--mono);
  font-size: clamp(3rem, 4.6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.006em;
  line-height: 0.86;
}

.hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 520px;
}

.hero__finder {
  z-index: 2;
  min-width: 0;
  max-width: 500px;
  justify-self: end;
}

.finder-panel__top strong {
  max-width: 360px;
}

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

.hero-preview-card {
  min-width: 0;
}

@media (max-width: 1060px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__copy,
  .hero h1,
  .hero__lead {
    max-width: 760px;
  }

  .hero__finder {
    width: 100%;
    max-width: 720px;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 0.82;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero h1 .hero-line {
    white-space: normal;
  }
}

/* Brand and hero polish: restore the DHgate Spreadsheet+ identity without crowding the product grid. */
.site-header .brand {
  gap: 11px;
}

.site-header .brand__wordmark {
  display: block;
  min-width: 0;
}

.site-header .brand__wordmark strong {
  display: block;
  color: var(--gold-strong);
  font-family: var(--mono);
  font-size: clamp(0.94rem, 1.12vw, 1.12rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: none;
  white-space: nowrap;
}

.site-header .brand__wordmark > span {
  display: none;
}

.hero__layout {
  grid-template-columns: minmax(0, 560px) minmax(390px, 500px);
  justify-content: space-between;
  gap: clamp(58px, 6.8vw, 96px);
}

.hero__copy {
  max-width: 560px;
  padding-right: 0;
  transform: translateX(-2px);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3.28rem, 4.25vw, 4.95rem);
  letter-spacing: 0.002em;
  line-height: 0.84;
}

.hero h1 .hero-line--gold {
  display: block;
}

.hero__lead {
  max-width: 500px;
}

.hero__finder {
  max-width: 500px;
}

.hero-socials {
  max-width: 430px;
  margin-top: 18px;
  justify-content: flex-start;
  transform: translateX(-1px);
}

.hero-socials > span {
  flex-basis: 100%;
  margin: 0 0 -2px;
  color: rgba(245, 242, 235, 0.52);
  letter-spacing: 0.18em;
}

@media (max-width: 1180px) {
  .hero__layout {
    grid-template-columns: minmax(0, 520px) minmax(380px, 480px);
    gap: clamp(44px, 5.6vw, 72px);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 4.05vw, 4.35rem);
  }
}

@media (max-width: 1060px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero h1,
  .hero__lead,
  .hero__finder {
    max-width: 720px;
  }

  .hero__copy {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header .brand__wordmark strong {
    font-size: 0.78rem;
    letter-spacing: -0.01em;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11.4vw, 3.65rem);
  }
}

/* Readability scale pass: slightly larger type without changing the layout rhythm. */
body {
  font-size: 17px;
}

.site-header .brand__wordmark strong {
  font-size: clamp(1.05rem, 1.24vw, 1.24rem);
  line-height: 0.95;
}

.brand__badge {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.nav-link {
  font-size: clamp(0.76rem, 0.86vw, 0.84rem);
}

.button,
.mini-link,
.save-link,
.row-link {
  font-size: 1rem;
}

.hero__lead {
  font-size: clamp(1.04rem, 1.12vw, 1.14rem);
}

.hero-socials {
  font-size: 0.8rem;
}

.finder-panel__top strong {
  font-size: clamp(1.12rem, 1.42vw, 1.34rem);
}

.search-shell input {
  font-size: 1rem;
}

.filter-chip,
.finder-category-row a,
.category-link {
  font-size: 0.88rem;
}

.hero-preview-card__copy strong {
  font-size: 0.86rem;
}

.hero-preview-card__copy span {
  font-size: 0.8rem;
}

.featured-card h3 {
  font-size: 1.16rem;
}

.featured-card__category,
.featured-card__meta {
  font-size: 0.92rem;
}

.tag-pill {
  font-size: 0.72rem;
}

.section-head p,
.page-hero__copy,
.community-card p,
.site-footer__copy {
  font-size: 1.06rem;
}

.site-footer__legal--compact {
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header .brand__wordmark strong {
    font-size: 0.84rem;
  }

  .brand__badge {
    width: 34px;
    height: 34px;
  }
}

/* Aesthetic correction: keep the sharper old typography, make only the brand/nav feel stronger. */
body {
  font-size: 16px;
}

.site-header__inner {
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  column-gap: clamp(24px, 3.2vw, 48px);
  min-height: 76px;
}

.site-header .brand {
  gap: 12px;
}

.site-header .brand__wordmark strong {
  color: var(--gold-strong);
  font-family: var(--mono);
  font-size: clamp(1.18rem, 1.42vw, 1.42rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.006em;
  line-height: 0.9;
  text-shadow: 0 0 22px rgba(245, 200, 73, 0.14);
}

.brand__badge {
  width: 40px;
  height: 40px;
  font-size: 0.88rem;
}

.site-nav {
  justify-self: end;
  justify-content: flex-end;
  gap: clamp(24px, 2.7vw, 42px);
  margin-left: auto;
  margin-right: clamp(12px, 2.2vw, 34px);
}

.nav-link {
  color: rgba(245, 242, 235, 0.78);
  font-family: var(--mono);
  font-size: clamp(0.78rem, 0.86vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.nav-link.is-active,
.nav-link:hover {
  color: #fff2bd;
  text-shadow: 0 0 18px rgba(245, 200, 73, 0.18);
}

.button {
  font-size: 0.95rem;
}

.mini-link,
.save-link,
.row-link {
  font-size: 0.9rem;
}

.hero__lead {
  font-size: clamp(1rem, 1.04vw, 1.08rem);
}

.hero-socials {
  font-size: 0.74rem;
}

.filter-chip,
.finder-category-row a,
.category-link {
  font-size: 0.8rem;
}

.hero-preview-card__copy strong {
  font-size: 0.78rem;
}

.hero-preview-card__copy span {
  font-size: 0.74rem;
}

.featured-card h3 {
  font-size: 1.05rem;
}

.featured-card__category,
.featured-card__meta {
  font-size: 0.86rem;
}

.tag-pill {
  font-size: 0.68rem;
}

@media (max-width: 1060px) {
  .site-header .brand__wordmark strong {
    font-size: clamp(1rem, 2vw, 1.22rem);
  }

  .site-nav {
    gap: 18px;
    margin-right: 10px;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    justify-self: stretch;
    justify-content: stretch;
    gap: 8px;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .site-header .brand__wordmark strong {
    font-size: 0.88rem;
  }

  .brand__badge {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }
}

/* Search page proportion: keep the discover title powerful, but not oversized. */
.page-hero--discover h1 {
  max-width: 560px;
  font-size: clamp(2.35rem, 4.15vw, 4.05rem);
  line-height: 0.9;
}

@media (max-width: 840px) {
  .page-hero--discover h1 {
    font-size: clamp(2.25rem, 8vw, 3.4rem);
  }
}

/* Header nav final polish: larger, cleaner, and more premium without getting bulky. */
.site-nav {
  gap: clamp(26px, 2.9vw, 46px);
  margin-right: clamp(18px, 2.4vw, 38px);
}

.nav-link {
  padding: 12px 0;
  color: rgba(245, 242, 235, 0.82);
  font-family: var(--body);
  font-size: clamp(0.84rem, 0.94vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-link::after {
  bottom: 2px;
  height: 2px;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 20px;
    margin-right: 12px;
  }

  .nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 840px) {
  .site-nav {
    gap: 8px;
    margin: 0;
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .legal-hero__grid,
  .legal-signal-grid,
  .legal-feature-panel {
    grid-template-columns: 1fr;
  }

  .legal-orbit {
    min-height: 320px;
  }
}

/* Phone-only finish: designed mobile layout without changing desktop. */
@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .site-header {
    background: rgba(3, 3, 3, 0.96);
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    min-height: 66px;
    column-gap: 10px;
  }

  .site-header .brand {
    min-width: 0;
    gap: 9px;
  }

  .site-header .brand__wordmark {
    min-width: 0;
    overflow: visible;
  }

  .site-header .brand__wordmark strong {
    font-size: clamp(0.9rem, 3.7vw, 1.08rem);
    letter-spacing: 0.012em;
    line-height: 1;
    white-space: nowrap;
  }

  .brand__badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .nav-toggle {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
  }

  .nav-toggle::before {
    content: "☰";
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1;
  }

  body.nav-open .nav-toggle::before {
    content: "×";
    font-size: 1.25rem;
  }

  .header-actions {
    justify-self: end;
    flex-wrap: nowrap;
  }

  .header-actions .button--heart {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .site-nav {
    top: calc(100% + 1px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(245, 200, 73, 0.14);
    background:
      radial-gradient(circle at 12% 0%, rgba(245, 200, 73, 0.13), transparent 42%),
      rgba(6, 6, 6, 0.985);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  }

  .nav-link {
    min-height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.is-active {
    border-color: rgba(245, 200, 73, 0.32);
    background: rgba(245, 200, 73, 0.09);
  }

  .category-dock {
    top: 66px;
  }

  .category-dock__inner {
    gap: 8px;
    min-height: 48px;
  }

  .category-dock__link {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero__inner {
    padding: 28px 0 18px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__copy,
  .hero h1,
  .hero__lead,
  .hero__finder {
    max-width: none;
  }

  .hero-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(2.45rem, 12.7vw, 3.75rem);
    line-height: 0.86;
  }

  .hero h1 .hero-line {
    white-space: normal;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions,
  .page-actions,
  .spreadsheet-band__actions,
  .community-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button,
  .button--small {
    width: 100%;
    min-height: 48px;
  }

  .hero-socials {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-socials > span {
    flex-basis: 100%;
  }

  .hero-socials a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.7rem;
  }

  .finder-panel__top {
    margin-bottom: 12px;
  }

  .finder-panel__top strong {
    max-width: 260px;
    font-size: 1.05rem;
    line-height: 1;
  }

  .search-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .search-shell__hint {
    display: none;
  }

  .search-shell input {
    width: 100%;
    min-height: 42px;
    font-size: 0.96rem;
  }

  .quick-chip-row {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .quick-chip-row .filter-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hero-preview-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(242px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-preview-card {
    min-height: 268px;
    scroll-snap-align: start;
  }

  .hero-preview-card__image {
    height: 148px;
  }

  .finder-category-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .metric-strip {
    margin-top: 8px;
    border-radius: 16px;
  }

  .metric-item {
    padding: 14px 12px;
  }

  .metric-item strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    gap: 16px;
  }

  .section-head h2,
  .seo-panel h2,
  .spreadsheet-band h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.94;
  }

  .section-head p,
  .page-hero__copy,
  .community-card p {
    font-size: 0.98rem;
  }

  .category-grid-home,
  .featured-grid,
  .featured-grid--discover,
  .community-grid,
  .report-layout,
  .page-hero__stats {
    grid-template-columns: 1fr;
  }

  .category-card-home {
    min-height: 210px;
  }

  .category-card-home__media {
    height: 150px;
  }

  .featured-card {
    border-radius: 18px;
  }

  .featured-card__media {
    height: 250px;
  }

  .featured-card__body {
    padding: 15px;
  }

  .featured-card h3 {
    min-height: auto;
    font-size: 1.08rem;
  }

  .featured-card__actions,
  .featured-card__subactions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-link,
  .save-link,
  .row-link {
    justify-content: center;
    min-height: 38px;
  }

  .page-hero {
    padding: 26px 0 12px;
  }

  .page-hero--discover h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 0.92;
  }

  .discover-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .discover-copy {
    padding-top: 0;
  }

  .discover-console {
    padding: 14px;
    border-radius: 16px;
  }

  .filter-stack {
    gap: 12px;
  }

  .filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chip-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .sheet-shell {
    border-radius: 16px;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .sheet-cell--item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .sheet-thumb {
    width: 74px;
    height: 74px;
  }

  .sheet-cell--actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .seo-panel,
  .spreadsheet-band,
  .community-card,
  .report-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .site-footer {
    padding: 42px 0 92px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand-panel {
    gap: 12px;
  }

  .site-footer__legal--compact {
    max-width: none;
    font-size: 0.68rem;
    line-height: 1.48;
  }
}

@media (max-width: 390px) {
  .site-header .brand__wordmark strong {
    font-size: 0.84rem;
    letter-spacing: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }
}

/* Phone fit correction: keep the premium look, but make every mobile element breathe. */
@media (max-width: 720px) {
  html,
  body {
    background-color: #050505;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 40px 40px;
    min-height: 64px;
    column-gap: 7px;
  }

  .site-header .brand {
    gap: 8px;
    grid-column: 1;
    grid-row: 1;
  }

  .site-header .brand__wordmark strong {
    max-width: calc(100vw - 146px);
    font-size: clamp(0.82rem, 3.35vw, 0.98rem);
    letter-spacing: -0.018em;
  }

  .brand__badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 0.7rem;
  }

  .nav-toggle,
  .header-actions .button--heart {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .nav-toggle {
    position: fixed;
    top: 12px;
    right: auto;
    left: min(calc(100vw - 98px), 292px);
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    display: inline-flex;
    transform: none;
    color: var(--gold-strong);
    border-color: rgba(245, 200, 73, 0.2);
    background: rgba(245, 200, 73, 0.045);
    z-index: 3;
  }

  .header-actions {
    position: fixed;
    top: 12px;
    right: auto;
    left: min(calc(100vw - 52px), 338px);
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    display: flex;
    transform: none;
    z-index: 3;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .hero__inner {
    padding-top: 30px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.32rem, 11vw, 3.1rem);
    letter-spacing: -0.012em;
    line-height: 0.88;
  }

  .hero h1 .hero-line:not(.hero-line--gold) {
    font-size: 0.84em;
  }

  .hero h1 .hero-line--gold > span {
    display: block;
  }

  .hero__lead {
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-socials {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-socials > span {
    grid-column: 1 / -1;
  }

  .hero-socials a {
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }

  .finder-panel__top {
    align-items: start;
    gap: 12px;
  }

  .finder-panel__top strong {
    max-width: 24ch;
    font-size: 0.98rem;
    line-height: 1.08;
  }

  .search-shell--hero .button {
    min-height: 48px;
  }

  .hero-preview-grid {
    grid-auto-columns: minmax(250px, 82vw);
    margin-right: -12px;
  }

  .hero-preview-card {
    min-height: 300px;
  }

  .hero-preview-card__image {
    height: 164px;
  }

  .hero-preview-card__copy strong {
    font-size: 0.92rem;
    line-height: 1.08;
  }

  .hero-preview-card__copy span {
    font-size: 0.84rem;
  }

  .featured-card__media {
    height: 265px;
  }

  .page-hero--discover h1,
  .page-hero h1 {
    max-width: calc(100vw - 24px);
    font-size: clamp(1.9rem, 8.6vw, 2.42rem);
    letter-spacing: -0.045em;
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .discover-console {
    overflow: hidden;
  }

  .discover-console .search-shell {
    width: 100%;
  }

  .discover-console input {
    min-width: 0;
  }

  .discover-copy {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .legal-hero {
    padding: 34px 0 24px;
  }

  .legal-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.4vw, 2.72rem);
    line-height: 0.88;
    overflow-wrap: normal;
  }

  .legal-hero__copy,
  .legal-orbit,
  .legal-signal-card,
  .legal-feature-panel {
    min-width: 0;
  }

  .legal-orbit {
    min-height: 300px;
    padding: 20px;
    border-radius: 20px;
  }

  .legal-orbit__ring {
    width: 150px;
    height: 150px;
  }

  .legal-orbit strong {
    max-width: 100%;
    font-size: clamp(1.25rem, 7.6vw, 1.72rem);
    overflow-wrap: anywhere;
  }

  .legal-signal-grid,
  .legal-feature-panel {
    grid-template-columns: 1fr;
  }

  .legal-signal-card {
    min-height: 180px;
    padding: 20px;
  }

  .legal-signal-card p,
  .legal-feature-panel p {
    max-width: 30ch;
  }

  .legal-feature-panel {
    padding: 20px;
  }

  .legal-feature-panel h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (max-width: 390px) {
  .site-header .brand__wordmark strong {
    font-size: clamp(0.78rem, 3.25vw, 0.86rem);
  }

  .hero h1 {
    font-size: clamp(2.08rem, 10vw, 2.45rem);
  }
}

@media (max-width: 430px) {
  .hero-socials {
    grid-template-columns: 1fr;
  }
}

/* Customer-facing support and final interface polish. */
body {
  --cursor-x: 50vw;
  --cursor-y: 18vh;
  --cursor-opacity: 0.58;
  isolation: isolate;
}

body::before,
body::after {
  z-index: 0;
}

body::after {
  background:
    radial-gradient(
      560px circle at var(--cursor-x) var(--cursor-y),
      rgba(245, 200, 73, 0.16),
      rgba(245, 200, 73, 0.055) 28%,
      transparent 58%
    ),
    radial-gradient(circle at 50% 18%, rgba(245, 200, 73, 0.12), transparent 18%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
  mix-blend-mode: screen;
  opacity: var(--cursor-opacity);
  transition: opacity 220ms ease;
}

.site-header,
main,
.site-footer,
.floating-socials,
.toast {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

.button--primary .social-icon {
  filter: brightness(0) saturate(0);
  opacity: 0.88;
}

.hero__copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 200, 73, 0.48), transparent);
  opacity: 0.5;
}

.hero__finder {
  border-color: rgba(245, 200, 73, 0.14);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 80px rgba(245, 200, 73, 0.1);
}

.hero-preview-card::after,
.community-card::after,
.support-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.055) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-30%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.hero-preview-card:hover::after,
.community-card:hover::after,
.support-panel:hover::after {
  opacity: 1;
  transform: translateX(30%);
}

.community-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(245, 200, 73, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 200, 73, 0.12), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.045), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.community-card__actions .button {
  min-width: 154px;
}

.page-hero--support {
  overflow: hidden;
  padding: clamp(46px, 7vw, 92px) 0 clamp(18px, 3vw, 34px);
}

.page-hero--support::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(760px, 80vw);
  height: 260px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 200, 73, 0.18), transparent 64%);
  filter: blur(54px);
  opacity: 0.74;
  pointer-events: none;
}

.support-layout {
  align-items: start;
  min-width: 0;
}

.support-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.support-panel h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.support-panel p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

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

.support-panel--side {
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 200, 73, 0.12), transparent 38%),
    radial-gradient(circle at 96% 96%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.support-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 26px;
}

.support-signal-grid article {
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(245, 200, 73, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.support-signal-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.support-signal-grid span {
  display: block;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.25;
}

.support-recent {
  margin-top: 26px;
}

.contact-card {
  position: relative;
}

.contact-card .mini-link {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .hero__copy::before {
    display: none;
  }

  .community-card__actions .button {
    min-width: 0;
  }

  .form-grid,
  .support-signal-grid {
    grid-template-columns: 1fr;
  }

  .page-hero--support h1 {
    max-width: 100%;
    font-family: var(--mono);
    font-size: clamp(2.15rem, 10.4vw, 2.78rem);
    letter-spacing: 0.006em;
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .support-layout {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .support-layout .support-panel + .support-panel {
    margin-top: 16px;
  }

  .support-layout > .support-panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .support-panel,
  .contact-form,
  .report-form label,
  .report-form input,
  .report-form select,
  .report-form textarea {
    min-width: 0;
  }

  .support-panel h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .support-panel p {
    max-width: 29ch;
    overflow-wrap: break-word;
  }

  .contact-form {
    max-width: calc(100vw - 64px);
  }

  .support-signal-grid article {
    min-height: auto;
  }

  .support-signal-grid span {
    margin-top: 8px;
  }
}

/* Homepage typography tuning: cleaner, less cramped, still bold. */
.site-header .brand__wordmark strong {
  font-size: clamp(1.12rem, 1.32vw, 1.34rem);
  letter-spacing: 0.014em;
}

.hero-badge {
  min-height: 32px;
  padding-inline: 13px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 590px;
  font-family: var(--mono);
  font-size: clamp(3rem, 4.1vw, 4.55rem);
  font-weight: 900;
  letter-spacing: 0.012em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 .hero-line {
  white-space: normal;
}

.hero h1 .hero-line--gold {
  white-space: nowrap;
}

.hero h1 .hero-line--gold > span {
  display: inline;
}

.hero h1 .hero-line--gold > span + span {
  margin-left: 0.06em;
}

.hero h1 .hero-line:not(.hero-line--gold) {
  font-size: 0.92em;
}

.hero__lead {
  max-width: 500px;
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.58;
}

.finder-panel__top strong {
  max-width: 330px;
  font-size: clamp(0.98rem, 1.18vw, 1.16rem);
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .site-header .brand__wordmark strong {
    font-size: clamp(0.92rem, 3.7vw, 1.04rem);
    letter-spacing: 0.006em;
  }

  .hero-badge {
    min-height: 28px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(1.98rem, 8.8vw, 2.58rem);
    letter-spacing: 0.006em;
    line-height: 0.94;
  }

  .hero h1 .hero-line--gold {
    white-space: nowrap;
  }

  .hero h1 .hero-line--gold > span {
    display: inline;
  }

  .hero h1 .hero-line:not(.hero-line--gold) {
    font-size: 0.9em;
  }

  .hero__lead {
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .finder-panel__top strong {
    max-width: 24ch;
    font-size: 0.9rem;
    line-height: 1.08;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(1.9rem, 8.45vw, 2.2rem);
  }
}

/* Brand correction pass: stronger legal page, visible cursor spotlight, richer homepage finder feel. */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 226, 122, 0.24), rgba(245, 200, 73, 0.12) 20%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 34%);
  filter: blur(8px);
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

.cursor-spotlight.is-active {
  opacity: 0.95;
}

.hero {
  border-bottom: 1px solid rgba(245, 200, 73, 0.1);
}

.hero__layout {
  position: relative;
}

.hero__layout::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 48%;
  width: min(520px, 40vw);
  height: min(520px, 40vw);
  border: 1px solid rgba(245, 200, 73, 0.1);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  opacity: 0.42;
  pointer-events: none;
  box-shadow:
    0 0 0 72px rgba(245, 200, 73, 0.015),
    0 0 80px rgba(245, 200, 73, 0.08);
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 520px;
  margin-top: 18px;
}

.hero-signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 200, 73, 0.15);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(245, 200, 73, 0.045);
  color: rgba(245, 242, 235, 0.8);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signal-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 16px rgba(245, 200, 73, 0.58);
}

.hero__finder {
  transform: translateZ(0);
}

.hero__finder:hover {
  border-color: rgba(245, 200, 73, 0.24);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 96px rgba(245, 200, 73, 0.16);
}

.hero-preview-card {
  backdrop-filter: blur(10px);
}

.hero-preview-card__open {
  background: linear-gradient(135deg, #ffd04d, #f2bc34);
  color: #090909;
  box-shadow: 0 12px 30px rgba(245, 200, 73, 0.16);
}

.metric-strip {
  border-color: rgba(245, 200, 73, 0.12);
  background:
    radial-gradient(circle at 28% 0%, rgba(245, 200, 73, 0.08), transparent 42%),
    rgba(10, 10, 10, 0.82);
}

.section-head h2,
.spreadsheet-band h2,
.seo-panel h2 {
  text-transform: uppercase;
}

.legal-hero {
  min-height: clamp(560px, calc(100vh - 76px), 760px);
  display: flex;
  align-items: center;
  padding: clamp(82px, 9vw, 132px) 0 clamp(58px, 7vw, 92px);
  border-bottom: 1px solid rgba(245, 200, 73, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 200, 73, 0.2), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(245, 200, 73, 0.045), transparent 72%);
}

.legal-hero::before {
  opacity: 0.9;
  mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
}

.legal-hero__grid {
  width: var(--container);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
}

.legal-hero__copy {
  max-width: 820px;
}

.legal-hero__copy h1 {
  color: var(--text);
  font-family: var(--mono);
  font-size: clamp(4.6rem, 8.2vw, 8.7rem);
  font-weight: 900;
  letter-spacing: 0.004em;
  line-height: 0.78;
  text-shadow: 0 0 36px rgba(245, 200, 73, 0.07);
}

.legal-hero__copy .page-hero__copy {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(245, 242, 235, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.56;
}

.legal-orbit {
  min-height: 430px;
  align-content: end;
  border-color: rgba(245, 200, 73, 0.3);
  background:
    radial-gradient(circle at 50% 22%, rgba(245, 200, 73, 0.22), transparent 36%),
    radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.06), transparent 34%),
    rgba(16, 16, 16, 0.82);
  backdrop-filter: blur(18px);
}

.legal-signal-grid,
.legal-feature-panel,
.legal-faq-list {
  position: relative;
  z-index: 1;
}

.section--legal {
  padding-top: clamp(42px, 6vw, 78px);
}

@media (max-width: 1060px) {
  .legal-hero {
    min-height: auto;
  }

  .legal-hero__grid {
    grid-template-columns: 1fr;
  }

  .legal-orbit {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .cursor-spotlight {
    display: none;
  }

  .hero__layout::after {
    display: none;
  }

  .hero-signal-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-signal-row span {
    justify-content: center;
    min-height: 32px;
    font-size: 0.66rem;
  }

  .legal-hero {
    padding: 44px 0 34px;
  }

  .legal-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 4.35rem);
    line-height: 0.86;
    overflow-wrap: normal;
  }

  .legal-hero__copy .page-hero__copy {
    max-width: 32ch;
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .legal-orbit {
    min-height: 340px;
    max-width: none;
  }
}
