/* ================================================================
   SHARED DESIGN SYSTEM — locateinmate.online
   All pages import this file.
================================================================ */

:root {
  --ink: #0a0b10;
  --ink-mid: #141721;
  --ink-card: #1c212e;
  --amber: #f08519;
  --amber-hi: #ff9a30;
  --amber-lo: #b8640e;
  --amber-glow: rgba(240, 133, 25, 0.15);
  --violet: #7c6ec4;
  --violet-hi: #9a8ee0;
  --cream: #faf7f1;
  --cream-2: #ede8dc;
  --cream-3: #d8d0bf;
  --text: #1a1826;
  --text-2: #4a4762;
  --text-3: #8a89a4;
  --red: #c53535;

  /* Premium Typography */
  --fd: "Outfit", sans-serif;
  --fs: "Inter", sans-serif;
  --fb: "Inter", sans-serif;

  /* Glassmorphism Foundations */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);

  --r: 12px;
  --rl: 20px;
  --sh1: 0 4px 12px rgba(0, 0, 0, 0.1);
  --sh2: 0 12px 48px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html {
  overflow-x: hidden;
}
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--fb);
  cursor: pointer;
}

/* ======== NAV ======== */
#nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ink);
  border-bottom: 2px solid var(--amber);
  transition: box-shadow 0.3s;
}
#nav.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}
.nav-row {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-wordmark span {
  color: var(--amber);
}
.nav-wordmark small {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--amber);
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-links a:hover {
  background: var(--amber);
  color: var(--ink);
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink) !important;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 14px !important;
  padding: 7px 17px !important;
  border-radius: 50px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
  white-space: nowrap;
}
.nav-call:hover {
  background: var(--amber-hi) !important;
  transform: scale(1.03);
}
.nav-call svg {
  width: 15px;
  height: 15px;
  animation: ring 4s ease-in-out infinite;
}
@keyframes ring {
  0%,
  85%,
  100% {
    transform: rotate(0);
  }
  87% {
    transform: rotate(-14deg);
  }
  90% {
    transform: rotate(14deg);
  }
  93% {
    transform: rotate(-8deg);
  }
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======== BUTTONS ======== */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-main:hover {
  background: var(--amber-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 133, 25, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--violet);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--violet);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--violet);
  color: #fff;
  transform: translateY(-2px);
}

/* ======== PAGE CONTENT WRAPPER ======== */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.page-wrap.wide {
  max-width: 1100px;
}
.page-title {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.page-subtitle {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.6;
  border-bottom: 2px solid var(--cream-3);
  padding-bottom: 28px;
}
.page-section {
  margin-bottom: 40px;
}
.page-section h2 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  padding-top: 32px;
  border-top: 1px solid var(--cream-3);
}
.page-section h2:first-child {
  border-top: none;
  padding-top: 0;
}
.page-section p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.page-section ul {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 14px;
}
.page-section ul li {
  margin-bottom: 6px;
}
.page-section strong {
  color: var(--text);
}

.warn-box {
  background: #fff3f3;
  border: 1px solid rgba(197, 53, 53, 0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 20px 0;
}
.warn-box h3 {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.warn-box ul {
  color: var(--red);
  font-size: 14px;
  padding-left: 18px;
}
.warn-box ul li {
  margin-bottom: 5px;
}

.agree-box {
  background: var(--amber-glow);
  border: 1px solid rgba(240, 133, 25, 0.3);
  border-left: 4px solid var(--amber);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 20px 0;
}
.agree-box p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.info-box {
  background: rgba(124, 110, 196, 0.07);
  border: 1px solid rgba(124, 110, 196, 0.2);
  border-left: 4px solid var(--violet);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 20px 0;
}
.info-box p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.7;
}

/* ======== FOOTER ======== */
footer {
  background: var(--ink);
  padding: 56px 24px 0;
  border-top: 2px solid var(--amber);
}
.footer-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.footer-tagline {
  font-family: var(--fs);
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.footer-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
}
.footer-ph {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.2s;
}
.footer-ph:hover {
  color: var(--amber-hi);
}
.footer-col-h {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--amber);
}
.footer-hours-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bar {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bar-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.footer-bar-r {
  display: flex;
  gap: 14px;
}
.footer-bar-r a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-bar-r a:hover {
  color: var(--amber);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-mid);
    padding: 12px;
    border-bottom: 2px solid var(--amber);
    z-index: 50;
  }
  .nav-logo-img {
    height: 28px;
  }
  .nav-burger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .nav-logo-img {
    height: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
/* ======== OVERLAYS & MODALS ======== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 26, 0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.overlay.on {
  opacity: 1;
  pointer-events: all;
}

/* Registration Gate Modal */
.rg-modal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}
.rg-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.15s;
}
.rg-close:hover {
  color: #fff;
}
.rg-icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.rg-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.rg-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}
.rg-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
.rg-input:focus {
  border-color: var(--amber);
}
.rg-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  cursor: pointer;
}
.rg-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  cursor: pointer;
}
.rg-consent-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.rg-consent-text a {
  color: var(--amber);
  text-decoration: none;
}
.rg-submit {
  width: 100%;
  background: var(--amber);
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.rg-submit:hover {
  background: var(--amber-hi);
}
.rg-success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.rg-social-wrap {
  margin-bottom: 20px;
}
.rg-status {
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rg-centered-step {
  display: none;
  padding: 24px 0;
  text-align: center;
}
.rg-success-check {
  font-size: 40px;
  margin-bottom: 16px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-maricopa {
  border-left-color: var(--amber) !important;
}
.mt-18 {
  margin-top: 18px;
}
.flex-col-11 {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.text-600 {
  font-weight: 600;
}
.gap-20 {
  gap: 20px;
}
.p-20-0 {
  padding: 20px 0;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.w-100 {
  width: 100%;
}
.opacity-60 {
  color: rgba(255, 255, 255, 0.6);
}
.icon-20 {
  width: 20px;
  height: 20px;
}
.legal-notice-custom {
  background: rgba(255, 100, 0, 0.05);
  border: 1px solid rgba(240, 133, 25, 0.2);
  border-left: 4px solid var(--amber);
  padding: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  margin-bottom: 40px;
}
.abb-logo-container {
  text-align: center;
  margin-bottom: 18px;
}
.abb-logo-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: inline-block;
}
.tracker-pixel {
  display: none;
}
.sh-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.sh-label-center {
  justify-content: center;
}
.mt-20 {
  margin-top: 20px;
}
.hidden {
  display: none;
}
.hidden-box {
  display: none;
  visibility: hidden;
}
.flex-row-center {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flex-col-8 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svg-11 {
  width: 11px;
  height: 11px;
}
.amber-link-inline {
  color: var(--amber);
  margin: 0 3px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 4px;
}
.text-violet {
  color: var(--violet);
}
.text-amber-bold {
  color: var(--amber);
  font-weight: 700;
}
/* Connecting Page Styles */
.conn-cta-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.conn-cta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 14px;
}
.conn-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f08519, #e07010);
  color: #fff;
  font-family: var(--fd, "Oswald", sans-serif);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(240, 133, 25, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.conn-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 133, 25, 0.5);
}
.conn-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin: 10px 0 0;
}
.state-initial-wrap {
  text-align: center;
  padding: 64px 24px;
}
.state-icon-large {
  font-size: 40px;
  margin-bottom: 12px;
}
.state-btns {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-pill-dark {
  background: var(--ink);
  color: var(--amber);
}
.btn-pill-dark:hover {
  background: var(--ink-mid);
}
.btn-pill-amber {
  background: var(--amber);
  color: var(--ink);
}
.btn-pill-amber:hover {
  background: var(--amber-hi);
}
.text-violet {
  color: var(--violet) !important;
}
.footer-dim-link {
  color: rgba(255, 255, 255, 0.4) !important;
}
/* ================================================================
   REGISTRATION GATE & DIGITAL ARTIFACTS
================================================================ */
#reg-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 15, 26, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
#reg-gate-overlay.rg-hidden { display: none !important; }
.rg-modal {
  background: linear-gradient(145deg, #1c2435 0%, #0b0f1a 100%);
  border: 1px solid rgba(240, 133, 25, 0.35);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
  padding: 48px 57px;
  max-width: 480px;
  width: 95%;
  position: relative;
  border-radius: 4px; /* Harder corners for 'artifact' look */
}
.rg-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.rg-close:hover {
  color: var(--amber);
}

.rg-header {
  text-align: center;
  margin-bottom: 24px;
}
.rg-logo {
  display: block;
  width: 45px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(240, 133, 25, 0.3));
}
.rg-title {
  font-family: var(--fd);
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rg-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.6;
  text-align: center;
}
.rg-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
  outline: none;
}
.rg-input:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(240, 133, 25, 0.2);
}
.rg-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.rg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.rg-field label {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}
@media (max-width: 480px) {
  .rg-row {
    grid-template-columns: 1fr;
  }
}

/* Digital Artifact Buttons */
.rg-submit,
.btn-artifact {
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  font-family: var(--fd);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px;
  border: none;
  border-radius: 2px;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(240, 133, 25, 0.35);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.rg-submit:hover,
.btn-artifact:hover {
  background: var(--amber-hi);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(240, 133, 25, 0.55);
}
.rg-submit::after,
.btn-artifact::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(25deg);
  animation: cyber-scan 4s infinite ease-out;
}
@keyframes cyber-scan {
  0% {
    left: -100%;
  }
  35%,
  100% {
    left: 200%;
  }
}

.rg-status {
  color: var(--amber);
  font-family: var(--fd);
  font-size: 20px;
  margin-top: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: rg-pulse 2s infinite ease-in-out;
}
@keyframes rg-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.98);
  }
}

.rg-v-email {
  color: var(--amber);
  font-weight: 800;
}
/* Hidden utility — used by JS to show/hide views without inline style */
.rg-hidden { display: none !important; }

/* Link-styled button (Sign in / Register links) */
.rg-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin: 10px auto 0;
  text-align: center;
}
.rg-link-btn:hover { color: var(--amber); }

/* Inline field-level error — hidden via .rg-hidden class, not display:none here */
.rg-field-error {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: -4px;
  margin-bottom: 0;
}
/* General error message (login failures etc.) */
.rg-error-msg {
  color: #ff6b6b;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  display: none;
}
/* Forgot password / meta links below forms */
.rg-meta-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-decoration: underline;
  text-align: center;
  display: block;
  margin-top: 8px;
}
/* Legal disclaimer text */
.rg-legal-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.rg-legal-text a { color: var(--amber); }

/* Check-your-email confirmation view */
.rg-check-email-view {
  text-align: center;
  padding: 20px 0;
}
.rg-email-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.rg-spam-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
/* Small muted subtitle below the gate title */
.rg-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -8px;
  margin-bottom: 14px;
}
/* Orange tagline / callout inside register desc */
.rg-tagline {
  color: var(--amber, #f08519);
  display: block;
  margin-top: 10px;
  font-style: italic;
}
/* Session-expired hint shown above login form */
.rg-session-hint {
  background: rgba(240, 133, 25, 0.1);
  border: 1px solid rgba(240, 133, 25, 0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 16px;
}


/* ================================================================
   FILMSTRIP SYSTEM
================================================================ */
.filmstrip-container {
  background: #0b0f1a;
  height: 112px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 133, 25, 0.25);
}
.film-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
  gap: 3px;
  background: linear-gradient(90deg, #0b0f1a 80%, transparent);
}
.film-live {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.film-dot {
  width: 7px;
  height: 7px;
  background: #c53535;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  animation: blink 1.4s ease-in-out infinite;
}
.film-county {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}
.film-track {
  display: flex;
  gap: 10px;
  padding: 12px 12px 12px 100px;
  animation: filmScroll 60s linear infinite;
  width: max-content;
}

/* ======== UTILITIES FOR REFACTOR ======== */
.mr-8 {
  margin-right: 8px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.rg-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  text-align: left;
  cursor: pointer;
}
.rg-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.rg-consent-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.rg-consent-text strong {
  color: #fff;
}
.rg-consent-text a {
  color: var(--amber);
  text-decoration: underline;
}
.spinner-centered {
  margin: 0 auto 20px;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(240, 133, 25, 0.1);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.rg-success-emoji {
  font-size: 48px;
  margin-bottom: 20px;
}
.rg-wait-step {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.rg-overlay-full {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rg-close-static {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  cursor: pointer;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mugshot filmstrip image utility */
.mug-face-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #171e2e;
  border-radius: 4px 4px 0 0;
}

/* ================================================================
   CONNECTING ANIMATION PAGE
   Used in connecting.html to bridge registration and target site
================================================================ */
/* ── Connecting page ─────────────────────────────────────────── */
.conn-page-wrap {
  position: relative;
  background: #080c16;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  font-family: var(--fb);
  overflow: hidden;
}

/* Star-field background */
.conn-bg-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240, 133, 25, 0.08) 0%, transparent 60%),
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 85%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 10% 65%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 40%, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
}

.conn-card {
  position: relative;
  background: linear-gradient(160deg, #1a2236 0%, #0d1120 100%);
  border: 1px solid rgba(240, 133, 25, 0.25);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.conn-logo {
  height: 42px;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 8px rgba(240, 133, 25, 0.25));
}

/* ── Circular ring timer ── */
.conn-ring-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
}

.conn-ring-svg {
  width: 180px;
  height: 180px;
  display: block;
}

.conn-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 7;
}

.conn-ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: var(--ring-offset, 326.73px);
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  transition: stroke-dashoffset 0.25s linear;
  filter: drop-shadow(0 0 6px rgba(240, 133, 25, 0.6));
}

.conn-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.conn-ring-icon {
  font-size: 28px;
  line-height: 1;
  animation: conn-pulse 2s ease-in-out infinite;
}

.conn-ring-count {
  font-family: var(--fd, "Oswald", sans-serif);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.conn-ring-unit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes conn-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}

.conn-title {
  font-family: var(--fd, "Oswald", sans-serif);
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.conn-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
}

/* ── Centered step dots ── */
.conn-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.conn-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.conn-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
  background: rgba(255,255,255,0.04);
}

.conn-step-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.4s;
}

.conn-step-sep {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 2px;
  margin-bottom: 18px;
}

.conn-step-dot.active .conn-step-icon {
  border-color: var(--amber);
  background: rgba(240, 133, 25, 0.15);
  color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 133, 25, 0.15);
  animation: conn-step-pulse 1s ease-in-out infinite;
}

.conn-step-dot.active .conn-step-label {
  color: var(--amber);
}

.conn-step-dot.done .conn-step-icon {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.conn-step-dot.done .conn-step-label {
  color: rgba(76, 175, 80, 0.7);
}

@keyframes conn-step-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(240, 133, 25, 0.15); }
  50%       { box-shadow: 0 0 0 6px rgba(240, 133, 25, 0.08); }
}

/* ── Trust bar ── */
.conn-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.conn-trust-badge {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.conn-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.conn-status-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.tracker-pixel-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* --- General Utilities --- */
.flex-wrap-gap { display: flex; gap: 16px; flex-wrap: wrap; }
.mt-24 { margin-top: 24px !important; }
.p-20 { padding: 20px !important; }
.text-center { text-align: center !important; }
.opacity-60 { opacity: 0.6 !important; }

/* In Search Widget */
.cs-input-glass:focus {
  border-color: rgba(240, 133, 25, 0.85) !important;
  outline: none;
}

/* ── Keyframes (used by filmstrip in county pages) ── */
@keyframes filmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── GTM noscript ── */
.gtm-noscript { display: none !important; visibility: hidden; }

/* ── County page legal notice ── */
.legal-notice {
  background: rgba(240,133,25,0.06);
  border: 1px solid rgba(240,133,25,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 900px;
  margin: 12px auto;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ── Urgency banner ── */
#urgency {
  background: linear-gradient(135deg, #8b0000, var(--red) 50%, #a03030);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}
#urgency a { color: #ffd580; text-decoration: underline; }
#urgency a:hover { color: #fff; }

/* ── County stats strip ── */
.county-stats-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 32px 24px;
}
.county-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.county-stat-card { padding: 16px; }
.county-stat-num {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.county-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── How Bail Works ── */
.section-how { padding: 56px 24px; }
.how-wrap { max-width: 1300px; margin: 0 auto; }
.how-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.how-title {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  z-index: 0;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}
.how-step:hover { border-color: rgba(240,133,25,0.35); }
.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240,133,25,0.15);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  transition: background 0.2s;
}
.how-step:hover .how-num { background: var(--amber); color: #fff; }
.how-step-h {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.how-step-p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── County CTA section ── */
.section-cta-county {
  background: linear-gradient(135deg, rgba(240,133,25,0.1), rgba(240,133,25,0.04));
  border-top: 1px solid rgba(240,133,25,0.2);
  border-bottom: 1px solid rgba(240,133,25,0.2);
  padding: 48px 24px;
  text-align: center;
}
.cta-county-title {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-county-sub { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.cta-county-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Sitemap section ── */
.sitemap-section {
  background: #0a0e1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px 24px;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.sitemap-col h4 {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sitemap-col a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; }
.sitemap-col a:hover { color: var(--amber); }
.sitemap-grid--wide {
  max-width: 1100px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.sitemap-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── County Local News Blog ── */
.county-news {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.county-news-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.county-news-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.county-news-title {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.county-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.news-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s;
}
.news-card:hover { border-color: rgba(240,133,25,0.35); }
.news-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(240,133,25,0.1);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.news-card-date {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.news-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ================================================================
   COUNTY IFRAME EMBED — Pima and any future iframeable counties
================================================================ */
.county-search-embed {
  max-width: 960px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
.county-embed-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}
.county-embed-fallback {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 10px;
}
.county-embed-link {
  color: var(--amber, #f08519);
  text-decoration: underline;
}

/* ================================================================
   AUTH CARD — register.html / setup.html standalone pages
================================================================ */
.auth-page-wrap {
  min-height: 100vh;
  background: #0b0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-family: var(--font, "Inter", sans-serif);
}
.auth-card {
  background: #13111e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.auth-logo {
  height: 36px;
  margin-bottom: 28px;
}
.auth-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.auth-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 24px;
  line-height: 1.5;
}
.auth-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.auth-input:focus {
  border-color: var(--amber, #f08519);
}
.auth-error {
  font-size: 12px;
  color: #ff6b6b;
  text-align: left;
  margin: -6px 0 10px;
}
.auth-btn {
  width: 100%;
  background: var(--amber, #f08519);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.auth-btn:hover { opacity: 0.88; }
.auth-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.auth-meta-link {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
}
.auth-meta-link:hover { color: var(--amber, #f08519); }

/* Email-sent confirmation state */
.auth-sent-icon {
  font-size: 52px;
  margin-bottom: 16px;
}
.auth-sent-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 12px;
}
.auth-sent-email {
  color: #fff;
  font-weight: 600;
}
.auth-spam-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 14px;
}
.auth-verified-banner {
  margin-top: 20px;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
  color: #34c759;
  font-size: 14px;
  font-weight: 600;
}
.auth-row {
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .auth-row { flex-direction: column; gap: 0; }
}
.auth-form {
  text-align: left;
}
.auth-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  cursor: pointer;
}
.auth-meta-text {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.auth-branding-statement {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 12px;
  text-align: left;
}
.auth-tagline {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber, #f08519);
  margin-bottom: 24px;
}
.auth-cta-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.auth-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 16px;
}
.auth-cta-phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--amber, #f08519);
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.2s;
}
.auth-cta-phone:hover { opacity: 0.85; }
.auth-cta-subtext {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
}
.auth-transfer-btn {
  margin-top: 20px;
  font-size: 16px;
  padding: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
