/* Based in Dubai — full stylesheet */

:root {
  --color-bg: #0D0D0D;
  --color-surface: #141414;
  --color-surface-2: #1C1C1C;
  --color-border: #2A2A2A;
  --color-gold: #C9A84C;
  --color-gold-light: #E2C170;
  --color-gold-muted: #8A6E2F;
  --color-text-primary: #F0EDE6;
  --color-text-secondary: #9A9589;
  --color-text-muted: #5A5650;
  --color-accent-green: #2ECC71;
  --color-accent-red: #E74C3C;
  --color-accent-blue: #3498DB;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --radius: 12px;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

/* Lock background scroll when mobile nav is open */
body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-gold);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul {
  list-style: none;
}

/* --- Animations --- */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 20px 2px rgba(201, 168, 76, 0.15);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Layout --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 101;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  transition: background var(--transition);
}

/* Keep header fully visible and on top of the full-screen nav overlay */
.site-header.nav-open {
  background: #0A0A0A;
  border-bottom-color: rgba(201, 168, 76, 0.22);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem max(1rem, env(safe-area-inset-right)) 0.85rem max(1rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1.15;
  transition: opacity var(--transition);
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  opacity: 0.9;
}

.logo__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4.2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.logo__gold {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 8px;
  background: var(--color-surface-2);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.nav-toggle:hover {
  border-color: var(--color-gold-muted);
  background: var(--color-surface);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-gold-light);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.35rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav a:hover {
  color: var(--color-gold-light);
  background: rgba(201, 168, 76, 0.06);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  /* Full-screen overlay — no content leak */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: calc(env(safe-area-inset-top, 0) + 4.5rem) 2rem max(2rem, env(safe-area-inset-bottom, 0));
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border: none;
    box-shadow: none;
    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.38s ease;
    opacity: 0;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav a {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    padding: 1rem 2rem;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    min-height: 56px;
    color: var(--color-text-primary);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a:hover,
  .nav a:active {
    color: var(--color-gold-light);
    background: rgba(201, 168, 76, 0.07);
  }

  /* Keep header buttons above the overlay */
  .site-header__inner {
    position: relative;
    z-index: 102;
  }

  /* Hide backdrop — full-screen nav makes it redundant */
  .nav-backdrop {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(1rem, env(safe-area-inset-right, 0)) 0 max(1rem, env(safe-area-inset-left, 0));
}

@media (min-width: 768px) {
  .container {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0));
  }
}

/* Sections participate in full-width layout (box-sizing is global on *) */
.site-header,
.hero,
.ad-zone,
.tool,
.site-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
  margin: 0;
}

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* Right/bottom/left use correct safe-area sides */
  padding:
    max(5rem, calc(env(safe-area-inset-top, 0) + 3.5rem))
    max(1.25rem, env(safe-area-inset-right, 0))
    max(2rem, env(safe-area-inset-bottom, 0))
    max(1.25rem, env(safe-area-inset-left, 0));
  position: relative;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center;
}

/* Tall desktop: full-viewport hero */
@media (min-height: 700px) and (min-width: 769px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: max(3rem, env(safe-area-inset-bottom, 0));
  }
}

/* Mobile: tighter vertical rhythm in hero */
@media (max-width: 768px) {
  .hero__scroll {
    display: none; /* scroll hint not needed when hero doesn't fill screen */
  }

  .stats-strip {
    margin-bottom: 1.5rem;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(900px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.hero__highlight {
  position: relative;
  display: inline-block;
}

.hero__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.28em;
  background: linear-gradient(90deg, transparent, var(--color-gold-muted), var(--color-gold), var(--color-gold-muted), transparent);
  opacity: 0.55;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
}

.hero__sub {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  max-width: 560px;
  width: 100%;
  margin: 0 auto 1.75rem;
}

.stats-strip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold-muted);
}

@media (min-width: 481px) {
  .stats-strip {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    max-width: none;
    gap: 0.75rem 1.5rem;
  }
}

.stats-strip__item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  text-align: center;
}

@media (min-width: 481px) {
  .stats-strip__item {
    justify-content: flex-start;
    flex-wrap: nowrap;
    text-align: left;
  }
}

.stats-strip__num {
  color: var(--color-gold-light);
  font-weight: 500;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--transition);
}

.hero__scroll:hover {
  color: var(--color-gold-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(transparent, var(--color-gold-muted));
}

/* --- Ad zones --- */
.ad-zone {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem max(1rem, env(safe-area-inset-right, 0)) 1rem max(1rem, env(safe-area-inset-left, 0));
  text-align: center;
}

.ad-zone__inner {
  min-height: 100px;
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-surface);
}

.ad-zone--inactive {
  display: none;
}

@media (max-width: 640px) {
  .ad-zone--leaderboard:not(.ad-zone--inactive) .ad-zone__inner {
    min-height: 52px;
    padding: 0.4rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .ad-zone--leaderboard:not(.ad-zone--inactive) {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }
}

.ad-zone--sidebar {
  display: none;
}

@media (min-width: 1100px) {
  .layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    align-items: start;
  }

  .ad-zone--sidebar {
    display: block;
    position: sticky;
    top: 5rem;
    padding: 0;
  }

  .ad-zone--sidebar .ad-zone__inner {
    min-height: 600px;
  }
}

/* --- Tool section --- */
.tool {
  padding: clamp(2rem, 6vw, 3rem) 0 clamp(2.5rem, 8vw, 4rem);
}

.tool__layout {
  display: grid;
  gap: 2rem;
}

/* Grid/flex children default to min-width:auto — long copy or the step carousel can blow past 100vw */
.tool__layout > * {
  min-width: 0;
}

@media (min-width: 960px) {
  .tool__layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

@media (max-width: 959px) {
  .tool-visual {
    display: none;
  }
}

.tool-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  background: linear-gradient(160deg, var(--color-surface) 0%, #101010 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 4vw, 1.85rem) clamp(1rem, 3.5vw, 1.65rem);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 24px 48px rgba(0, 0, 0, 0.35);
  animation: goldPulse 8s ease-in-out infinite;
}

@supports not (overflow: clip) {
  .tool-card {
    overflow-x: hidden;
  }
}

.tool-card__head {
  margin-bottom: 1.5rem;
}

.tool-card__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.tool-card__head p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#calculator-form {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-width: 0;
  max-width: 100%;
}

.form-progress__track {
  flex: 1 1 0;
  min-width: 0;
  height: 4px;
  background: var(--color-surface-2);
  border-radius: 4px;
  overflow: hidden;
}

.form-progress__fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold));
  border-radius: 4px;
  transition: width 0.4s ease;
}

.form-progress__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.form-steps {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: clamp(220px, 42vh, 420px);
}

.form-steps__track {
  display: flex;
  width: 400%;
  min-width: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
  min-width: 0;
  padding-right: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

.form-step h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-muted);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
  min-width: 0;
  max-width: 100%;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 0.45rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.35;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  touch-action: manipulation;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A9589'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold-muted);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group--error input,
.form-group--error select {
  border-color: var(--color-accent-red);
}

.form-error {
  font-size: 0.8rem;
  color: var(--color-accent-red);
  margin-top: 0.35rem;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .radio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.85rem 0.75rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  margin: 0;
  min-height: 3.25rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.12);
}

.radio-card label:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.radio-card input:focus-visible + label {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.radio-card input:checked + label {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.06);
}

.radio-card small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .form-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .form-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-secondary);
}

.btn--ghost:hover {
  border-color: var(--color-gold-muted);
  color: var(--color-text-primary);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-muted), var(--color-gold));
  color: #0D0D0D;
  border-color: rgba(201, 168, 76, 0.5);
  width: 100%;
}

.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
}

.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

.tool-visual {
  background: var(--color-surface-2);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-visual__mini-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tool-visual__bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.tool-visual__bar {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.tool-visual__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold));
  border-radius: 4px;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

/* --- Results --- */
.results-panel {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.results-panel[hidden] {
  display: none !important;
}

.results-panel__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(1rem, env(safe-area-inset-right, 0)) 0 max(1rem, env(safe-area-inset-left, 0));
}

.results-head {
  text-align: center;
  margin-bottom: 2rem;
}

.results-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: 0.75rem;
}

.verdict-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

.verdict-badge--thriving {
  color: var(--color-accent-green);
  background: rgba(46, 204, 113, 0.1);
}

.verdict-badge--comfortable {
  color: var(--color-gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.verdict-badge--tight {
  color: #E67E22;
  background: rgba(230, 126, 34, 0.1);
}

.verdict-badge--difficult {
  color: var(--color-accent-red);
  background: rgba(231, 76, 60, 0.1);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 360px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  animation: slideInUp 0.55s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.25s; }
.stat-card:nth-child(4) { animation-delay: 0.35s; }

.stat-card--gold { border-top: 3px solid var(--color-gold); }
.stat-card--green { border-top: 3px solid var(--color-accent-green); }
.stat-card--blue { border-top: 3px solid var(--color-accent-blue); }
.stat-card--red { border-top: 3px solid var(--color-accent-red); }

.stat-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.stat-card__value {
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  font-weight: 500;
  color: var(--color-gold-light);
  animation: countUp 0.6s ease;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.stat-card__hint {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-top: 0.35rem;
}

/* Budget breakdown bars */
.breakdown {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
}

.breakdown h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.breakdown__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown__row {
  display: grid;
  grid-template-columns: 100px 1fr 90px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .breakdown__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .breakdown__amount {
    text-align: left;
  }
}

.breakdown__label {
  color: var(--color-text-secondary);
}

.breakdown__amount {
  font-family: var(--font-mono);
  text-align: right;
  color: var(--color-gold-light);
}

.progress-bar {
  height: 10px;
  background: var(--color-surface-2);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold));
  border-radius: 6px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Neighborhoods */
.neighborhoods-block {
  margin: 2.5rem 0;
}

.neighborhoods-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.neighborhoods-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.sort-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sort-toggle button {
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  touch-action: manipulation;
}

.sort-toggle button.is-active {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.neighborhood-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.neighborhood-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  animation: slideInUp 0.5s ease backwards;
}

.neighborhood-card:nth-child(1) { animation-delay: 0.05s; }
.neighborhood-card:nth-child(2) { animation-delay: 0.1s; }
.neighborhood-card:nth-child(3) { animation-delay: 0.15s; }
.neighborhood-card:nth-child(4) { animation-delay: 0.2s; }
.neighborhood-card:nth-child(5) { animation-delay: 0.25s; }
.neighborhood-card:nth-child(6) { animation-delay: 0.3s; }

.neighborhood-card__title {
  font-weight: 600;
  font-size: 1.05rem;
}

.neighborhood-card__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gold-muted);
  grid-column: 1 / -1;
}

.neighborhood-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  grid-column: 1 / -1;
}

.tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.neighborhood-card__score-wrap {
  grid-column: 1 / -1;
}

.neighborhood-card__score-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

/* Affiliate strip */
.affiliate-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .affiliate-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.affiliate-card {
  padding: 1.35rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform var(--transition), border-color var(--transition);
}

.affiliate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.35);
}

.affiliate-card--gold { border-top: 3px solid var(--color-gold); }
.affiliate-card--blue { border-top: 3px solid var(--color-accent-blue); }
.affiliate-card--green { border-top: 3px solid var(--color-accent-green); }

.affiliate-card__icon {
  font-size: 1.75rem;
}

.affiliate-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.affiliate-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  flex: 1;
}

.affiliate-card .btn {
  width: 100%;
  margin-top: auto;
}

.share-row {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .share-row .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* Community + FAQ */
.reviews {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.reviews__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.reviews h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.65rem;
}

.reviews__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  transform: translateY(-2px);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  flex: 1;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-top: 0.35rem;
  border-top: 1px solid var(--color-border);
}

.review-card__meta strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.community, .faq {
  padding: 3rem 0;
}

@media (max-width: 640px) {
  .reviews {
    padding: 2rem 0;
  }

  .community, .faq {
    padding: 1.75rem 0;
  }

  .results-panel {
    padding: 1.75rem 0 2.5rem;
  }

  .tool {
    padding: 1.25rem 0 2rem;
  }
}

.community__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.35rem, 5vw, 2rem);
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
}

.community__card .btn--primary {
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.community__card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.community__card p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  text-align: center;
  margin-bottom: 2rem;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.25rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  touch-action: manipulation;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1.25rem;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  margin-bottom: 1rem;
}

.site-footer__links a {
  font-size: 0.85rem;
}

/* --- Legal pages --- */
.legal-page {
  padding: 2.5rem 0 4rem;
  max-width: 42rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-page__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.legal-page__disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin: 2rem 0 0.65rem;
  line-height: 1.3;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0 0 1rem;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page a:hover {
  color: var(--color-gold);
}

.legal-page__nav-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.9rem;
}

.form-legal-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}

.form-legal-note a {
  color: var(--color-gold-muted);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* --- Premium / partner job listings --- */
.page-hero__lead {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  color: var(--color-text-secondary);
  font-size: 1.02rem;
  line-height: 1.6;
}

.sponsor-disclosure {
  max-width: 40rem;
  margin: 1.75rem auto 0;
  padding: 1rem 1.15rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  text-align: left;
}

.sponsor-disclosure a {
  color: var(--color-gold-light);
}

.job-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .job-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.job-card {
  background: linear-gradient(165deg, var(--color-surface) 0%, #101010 100%);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.job-card:hover {
  border-color: rgba(201, 168, 76, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.job-card__badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold));
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
}

.job-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0.15rem 0 0;
  color: var(--color-text-primary);
}

.job-card__company {
  font-size: 0.9rem;
  color: var(--color-gold-muted);
  margin: 0;
}

.job-card__salary {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-gold-light);
  margin: 0.25rem 0 0;
}

.job-card__meta {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.job-card__meta li {
  padding: 0.2rem 0.45rem;
  background: var(--color-surface-2);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.job-card__summary {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0.5rem 0 0;
  flex: 1;
}

.job-card__since {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin: 0;
}

.job-card__cta {
  width: 100%;
  margin-top: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.25rem;
  background: var(--color-surface);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  color: var(--color-text-secondary);
}

.job-advertisers__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.04);
}

.job-advertisers__inner h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.job-advertisers__inner p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Submit page */
.page-hero {
  padding: max(3rem, env(safe-area-inset-top, 0)) 0 2rem;
  text-align: center;
}

@media (max-width: 480px) {
  .page-hero {
    padding-top: max(2.5rem, calc(env(safe-area-inset-top, 0) + 1.5rem));
  }

  .page-hero__lead {
    font-size: 0.95rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

.page-hero--premium {
  padding-top: max(2.75rem, calc(env(safe-area-inset-top, 0) + 1.25rem));
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero p {
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.submit-form {
  max-width: 640px;
  margin: 0 auto 4rem;
}

.thank-you {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-accent-green);
  border-radius: var(--radius);
  background: rgba(46, 204, 113, 0.06);
  margin-top: 1.5rem;
}

.thank-you[hidden] {
  display: none !important;
}

/* Loading overlay */
.results-loading {
  position: relative;
}

.results-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  z-index: 5;
}

.spinner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border-radius: var(--radius);
}

.spinner-overlay.is-visible {
  display: flex;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Toast */
.toast {
  position: fixed;
  bottom: max(5rem, calc(env(safe-area-inset-bottom, 0) + 4rem));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  box-sizing: border-box;
  max-width: min(22rem, calc(100vw - 2rem));
  width: auto;
  padding: 0.75rem max(1.25rem, env(safe-area-inset-right, 0)) 0.75rem max(1.25rem, env(safe-area-inset-left, 0));
  background: var(--color-surface-2);
  border: 1px solid var(--color-gold-muted);
  color: var(--color-text-primary);
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  text-align: center;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Narrow phones: type scale, vertical rhythm, calculator breathing room */
@media (max-width: 480px) {
  .form-progress {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .form-progress__label {
    order: -1;
    text-align: center;
    align-self: center;
  }

  .hero {
    padding-top: max(4rem, calc(env(safe-area-inset-top, 0) + 2.75rem));
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
    padding-bottom: max(1.35rem, env(safe-area-inset-bottom, 0));
  }

  .hero__eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .hero__sub {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }

  .stats-strip {
    font-size: 0.78rem;
    gap: 0.45rem;
    margin-bottom: 0;
  }

  .container {
    padding-left: max(1.1rem, env(safe-area-inset-left, 0));
    padding-right: max(1.1rem, env(safe-area-inset-right, 0));
  }

  .tool-card {
    padding: 1.5rem max(1.2rem, env(safe-area-inset-right, 0)) 1.45rem max(1.2rem, env(safe-area-inset-left, 0));
  }

  .tool-card__head {
    margin-bottom: 1.15rem;
  }

  .tool-card__head h2 {
    font-size: 1.22rem;
  }

  .tool-card__head p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .form-group {
    margin-bottom: 1.05rem;
  }

  .form-group label {
    margin-bottom: 0.5rem;
  }

  .form-step {
    padding-right: 0;
  }

  .page-hero h1 {
    font-size: 1.45rem;
  }

  .results-head h2 {
    font-size: 1.35rem;
  }

  .legal-page h1 {
    font-size: 1.55rem;
  }

  .legal-page h2 {
    font-size: 1.05rem;
  }
}

/* Stats ticker — desktop */
.stats-ticker {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gold-muted);
  padding: 0.5rem 0;
  z-index: 90;
  overflow: hidden;
}

@media (min-width: 900px) {
  .stats-ticker {
    display: block;
  }

  body.has-ticker {
    padding-bottom: 2.25rem;
  }
}

.stats-ticker__track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-ticker__inner {
  display: inline-block;
  padding-left: 100%;
}

.stats-ticker span {
  margin: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
