/* Workers Defense Pro — deep navy + gold, sharp geometric advocacy */
:root {
  --navy-950: #060d18;
  --navy-900: #0a1628;
  --navy-800: #0f2744;
  --navy-700: #163556;
  --navy-600: #1e4a72;
  --gold-400: #e8c547;
  --gold-500: #d4af37;
  --gold-600: #c9a227;
  --gold-700: #a8841a;
  --cream: #f7f4eb;
  --white: #ffffff;
  --slate-100: #e8edf4;
  --slate-300: #a8b6c8;
  --slate-400: #7a8da3;
  --slate-500: #5a6f86;
  --danger: #c94444;
  --success: #2d8a5e;
  --font-display: Georgia, "Times New Roman", "Liberation Serif", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(6, 13, 24, 0.35);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-100);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-400); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-500); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 197, 71, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo svg { width: min(220px, 58vw); height: auto; }
.logo:hover { opacity: 0.92; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-600);
  color: var(--gold-400);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.nav-toggle[aria-expanded="true"] { background: var(--navy-700); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--slate-100);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900) !important;
  padding: 0.55rem 1.1rem;
  border-bottom: none !important;
  font-weight: 800;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.site-nav .nav-cta:hover { filter: brightness(1.08); color: var(--navy-950) !important; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(232, 197, 71, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .site-nav.is-open { max-height: 320px; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.15rem;
  }
  .site-nav .nav-cta {
    text-align: center;
    clip-path: none;
    margin-top: 0.5rem;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(6,13,24,0.55) 0%, rgba(15,39,68,0.4) 50%, rgba(10,22,40,0.7) 100%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 40px,
      rgba(232, 197, 71, 0.03) 40px,
      rgba(232, 197, 71, 0.03) 41px
    );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 42%;
  height: 80%;
  background: linear-gradient(200deg, rgba(232,197,71,0.12), transparent 60%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  border-left: 3px solid var(--gold-400);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.12;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--gold-400); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--slate-300);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: filter 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-primary:hover { filter: brightness(1.08); color: var(--navy-950); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232, 197, 71, 0.45);
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
}
.stat {
  border-left: 2px solid var(--gold-600);
  padding-left: 0.75rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-400);
  line-height: 1.2;
}
.stat span { font-size: 0.78rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-panel {
  background: var(--navy-950);
  border: 1px solid rgba(232, 197, 71, 0.28);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-700));
}
.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.hero-panel p.panel-note {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 1.15rem;
}

/* —— Forms —— */
.form-grid {
  display: grid;
  gap: 0.85rem;
}
.form-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 520px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 0.35rem;
}
.field .req { color: var(--gold-400); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid rgba(168, 182, 200, 0.25);
  color: var(--white);
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--radius);
}
.field input::placeholder { color: var(--slate-500); }
.field input:invalid:not(:placeholder-shown):not(:focus),
.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--danger);
}
.field .error {
  display: none;
  font-size: 0.78rem;
  color: #f0a0a0;
  margin-top: 0.3rem;
}
.field.is-error .error { display: block; }
.field.is-error input,
.field.is-error select { border-color: var(--danger); }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.45;
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.form-success.is-visible { display: block; }
.lead-form.is-hidden { display: none; }
.form-success .check {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border: 2px solid var(--success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--success);
  font-size: 1.6rem;
  font-weight: 700;
}
.form-success h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--slate-300); font-size: 0.95rem; }

/* —— Sections —— */
.section { padding: 4rem 0; }
.section-alt { background: var(--navy-950); }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--slate-300); }

/* Trust bar */
.trust-bar {
  background: var(--navy-800);
  border-block: 1px solid rgba(232, 197, 71, 0.15);
  padding: 1.25rem 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  list-style: none;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-100);
  letter-spacing: 0.02em;
}
.trust-list .mark {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(232, 197, 71, 0.15);
  border: 1px solid var(--gold-600);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 800;
}

/* Rights / cards — geometric, not soft */
.rights-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .rights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .rights-grid { grid-template-columns: repeat(3, 1fr); }
}
.right-card {
  background: var(--navy-800);
  border: 1px solid rgba(168, 182, 200, 0.12);
  border-top: 3px solid var(--gold-600);
  padding: 1.5rem 1.35rem;
  position: relative;
}
.right-card .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: rgba(232, 197, 71, 0.35);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.right-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.right-card p { color: var(--slate-300); font-size: 0.95rem; }

/* How it works — steps as angled timeline */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--navy-800);
  border: 1px solid rgba(232, 197, 71, 0.15);
  counter-increment: step;
}
@media (min-width: 800px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 0; height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 10px solid var(--gold-600);
    transform: translateY(-50%);
    z-index: 2;
  }
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.step h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}
.step p { font-size: 0.9rem; color: var(--slate-300); }

/* Benefits */
.benefits-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .benefits-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.benefit-list { list-style: none; display: grid; gap: 1rem; }
.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(15, 39, 68, 0.6);
  border-left: 3px solid var(--gold-500);
}
.benefit-list .icon {
  width: 28px; height: 28px;
  background: var(--navy-950);
  border: 1px solid var(--gold-600);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.benefit-list h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.benefit-list p { font-size: 0.9rem; color: var(--slate-300); }

.cta-band {
  background:
    linear-gradient(120deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(232, 197, 71, 0.3);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(232,197,71,0.08));
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.cta-band p {
  color: var(--slate-300);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  max-width: 28rem;
}
.cta-band .btn { position: relative; z-index: 1; }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; max-width: 48rem; }
.faq-item {
  background: var(--navy-800);
  border: 1px solid rgba(168, 182, 200, 0.12);
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-400);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding: 0 1.2rem 1.15rem;
  color: var(--slate-300);
  font-size: 0.95rem;
  border-top: 1px solid rgba(168, 182, 200, 0.08);
  padding-top: 0.85rem;
}

/* Lead section */
.lead-section {
  background:
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  border-top: 1px solid rgba(232, 197, 71, 0.2);
}
.lead-wrap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .lead-wrap { grid-template-columns: 1fr 1.05fr; align-items: start; }
}
.lead-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}
.lead-copy p { color: var(--slate-300); margin-bottom: 1rem; }
.lead-copy ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.lead-copy li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--slate-100);
  font-size: 0.95rem;
}
.lead-copy li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 700;
}
.lead-form-card {
  background: var(--navy-950);
  border: 1px solid rgba(232, 197, 71, 0.28);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.lead-form-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.lead-form-card > p {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 1.15rem;
}

/* Disclaimer strip */
.disclaimer-strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(168, 182, 200, 0.1);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* —— Footer —— */
.site-footer {
  background: #040a12;
  border-top: 2px solid var(--gold-600);
  padding: 2.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 22rem;
}
.footer-col h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
  font-weight: 800;
}
.footer-col ul { list-style: none; display: grid; gap: 0.45rem; }
.footer-col a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(168, 182, 200, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--slate-500);
}
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--slate-400); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-400); }

/* —— Page hero (inner) —— */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  border-bottom: 1px solid rgba(232, 197, 71, 0.18);
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), transparent 55%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.65rem;
}
.page-hero p { color: var(--slate-300); max-width: 38rem; }

/* Legal pages */
.legal-content {
  padding: 3rem 0 4rem;
  max-width: 46rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-400);
  margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin: 1.35rem 0 0.5rem;
}
.legal-content p,
.legal-content li {
  color: var(--slate-300);
  margin-bottom: 0.85rem;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.legal-content a { color: var(--gold-400); }

/* —— Partners: A–Z rail + list rows (NOT card grid) —— */
.partners-layout {
  display: grid;
  gap: 0;
  padding: 0 0 4rem;
}
@media (min-width: 720px) {
  .partners-layout {
    grid-template-columns: 56px 1fr;
    gap: 0 1.5rem;
    align-items: start;
  }
}

.letter-rail {
  display: none;
}
@media (min-width: 720px) {
  .letter-rail {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: calc(var(--header-h) + 12px);
    max-height: calc(100vh - var(--header-h) - 24px);
    overflow-y: auto;
    gap: 0;
    padding: 0.35rem 0;
    background: var(--navy-950);
    border: 1px solid rgba(232, 197, 71, 0.2);
    scrollbar-width: thin;
  }
  .letter-rail a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--slate-400);
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  .letter-rail a:hover,
  .letter-rail a.is-active {
    color: var(--navy-900);
    background: var(--gold-400);
  }
  .letter-rail a.is-empty {
    color: var(--slate-500);
    opacity: 0.35;
    pointer-events: none;
  }
}

.partners-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}
.partners-toolbar .count {
  font-size: 0.9rem;
  color: var(--slate-400);
}
.partners-toolbar .count strong { color: var(--gold-400); }
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.search-wrap input {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid rgba(232, 197, 71, 0.3);
  color: var(--white);
  padding: 0.7rem 0.9rem 0.7rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
}
.search-wrap .search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-600);
  pointer-events: none;
  font-size: 0.95rem;
}

.mobile-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 720px) {
  .mobile-letters { display: none; }
}
.mobile-letters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-400);
  background: var(--navy-800);
  border: 1px solid rgba(232, 197, 71, 0.25);
  text-decoration: none;
}
.mobile-letters a.is-empty { opacity: 0.3; pointer-events: none; }

.partner-group { margin-bottom: 0.5rem; scroll-margin-top: calc(var(--header-h) + 16px); }
.partner-group-label {
  position: sticky;
  top: var(--header-h);
  z-index: 5;
  background: var(--navy-900);
  border-bottom: 2px solid var(--gold-600);
  padding: 0.55rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-400);
  font-weight: 700;
}
.partner-rows {
  list-style: none;
  border: 1px solid rgba(168, 182, 200, 0.1);
  border-top: none;
}
.partner-rows li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(168, 182, 200, 0.08);
  background: var(--navy-800);
  transition: background 0.12s;
}
.partner-rows li:nth-child(even) { background: rgba(15, 39, 68, 0.85); }
.partner-rows li:last-child { border-bottom: none; }
.partner-rows li:hover { background: var(--navy-700); }
.partner-rows .idx {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-500);
  min-width: 2.2rem;
  font-variant-numeric: tabular-nums;
}
.partner-rows .name {
  font-weight: 600;
  color: var(--slate-100);
  font-size: 0.98rem;
}
.partner-group.is-hidden,
.partner-rows li.is-hidden { display: none; }

.no-results {
  display: none;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--slate-400);
  border: 1px dashed rgba(168, 182, 200, 0.25);
}
.no-results.is-visible { display: block; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.field .optional { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--slate-500); font-size: 0.85em; }

