/* Global site footer — shared by every page via navbar_footer::display_footer() */
/* Extracted from css/home_landing.css so non-landing pages get the same footer styling */


.home_footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--brand) 24%, transparent), transparent 34%),
    radial-gradient(circle at 94% 18%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 30%),
    color-mix(in srgb, var(--brand_deep) 42%, black);
  color: rgba(255,255,255,0.68);
  box-shadow: inset 0 12px 32px rgba(0,0,0,0.12);
}

.home_footer_inner,
.home_footer_bottom_inner {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.home_footer_brand_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: center;
  padding: 54px 0 42px;
}

.home_footer_brand_link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.home_footer_brand_logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.home_footer_brand_name {
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home_footer_tagline {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.home_footer_connect_col {
  min-width: 380px;
  padding-left: 38px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.home_footer_connect_label {
  margin-bottom: 13px;
  color: rgba(255,255,255,0.46);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home_footer_connect_content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-direction: column;
}

.home_footer_social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.home_footer_social_link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.home_footer_social_link:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.home_footer_app_badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.home_footer_app_store_badge {
  display: inline-flex;
}

.home_footer_app_store_badge img {
  display: block;
  width: 156px;
  height: auto;
}

.home_footer_android_badge_placeholder {
  display: inline-flex;
  width: 156px;
  height: 52px;
  gap: 10px;
  align-items: center;
  padding: 0 13px;
  border: 1px dashed rgba(255,255,255,0.34);
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
}

.home_footer_android_badge_placeholder i {
  color: white;
  font-size: 1.45rem;
}

.home_footer_android_badge_copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.home_footer_android_badge_copy small {
  color: rgba(255,255,255,0.44);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home_footer_android_badge_copy span {
  color: white;
  font-size: 0.83rem;
  font-weight: 700;
}

.home_footer_nav_region {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.1);
}

.home_footer_nav_grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.45fr 1.4fr;
  gap: 50px;
  padding: 44px 0;
}

.home_footer_col_heading {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.46);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home_footer_col_heading::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 9px;
  border-radius: var(--radius_pill);
  background: rgba(255,255,255,0.18);
  content: '';
}

.home_footer_link_list {
  display: grid;
  gap: 9px;
}

.home_footer_link a {
  display: inline-block;
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.home_footer_link a:hover {
  color: white;
  transform: translateX(2px);
}

.home_footer_contact_list {
  display: grid;
  gap: 20px;
}

.home_footer_contact_block {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.home_footer_contact_icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--brand) 42%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  color: var(--brand_soft);
}

.home_footer_contact_label {
  margin-bottom: 3px;
  color: rgba(255,255,255,0.46);
  font-size: 0.82rem;
  font-weight: 700;
}

.home_footer_contact_value,
.home_footer_contact_value a {
  color: rgba(255,255,255,0.56);
  font-size: 0.88rem;
  line-height: 1.6;
  text-decoration: none;
}

.home_footer_contact_value a:hover {
  color: white;
}

.home_footer_fine_print {
  padding: 30px 0 28px;
}

.home_footer_notice {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius_lg);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.68);
  font-size: 0.83rem;
  line-height: 1.6;
}

.home_footer_notice_icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  color: var(--gold);
}

.home_footer_disclosure {
  max-width: 980px;
  margin-top: 18px;
  color: rgba(255,255,255,0.4);
  font-size: 0.76rem;
  line-height: 1.65;
}

.home_footer_bottom_bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.24);
}

.home_footer_bottom_inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  color: rgba(255,255,255,0.38);
  font-size: 0.72rem;
}

.home_footer_bottom_links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.home_footer_bottom_links a {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
}

.home_footer_bottom_links a:hover {
  color: white;
}

@media (max-width: 1020px) {
  .home_footer_brand_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home_footer_connect_col {
    min-width: 0;
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 0;
  }

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

@media (max-width: 640px) {
  .home_footer_inner,
  .home_footer_bottom_inner {
    width: calc(100% - 40px);
  }

  .home_footer_brand_grid {
    padding: 44px 0 36px;
  }

  .home_footer_nav_grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 38px 0;
  }

  .home_footer_contact_col {
    grid-column: 1 / -1;
  }

  .home_footer_notice {
    align-items: flex-start;
  }

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

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

  .home_footer_contact_col {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .home_footer_app_badges {
    align-items: flex-start;
    flex-direction: column;
  }
}
