/* =========================================================
   1. RESET / TOKENS / GLOBAL FOUNDATION
   ========================================================= */

:root {
  --bg: #070707;
  --bg2: #12100b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 215, 120, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f8f4ea;
  --muted: rgba(248, 244, 234, 0.82);
  --muted2: rgba(248, 244, 234, 0.58);
  --gold-1: #f3d38a;
  --gold-2: #d8a84b;
  --gold-3: #8f6426;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(243, 211, 138, 0.12), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(216, 168, 75, 0.10), transparent 24%),
    linear-gradient(180deg, #060606 0%, #0c0a07 45%, #12100b 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

/* =========================================================
   2. APP WRAPPER
   ========================================================= */

.app {
  min-height: 100dvh;
  width: 100%;
  padding: 12px;
  overflow-x: hidden;
}

.shell {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

/* =========================================================
   3. TOPBAR
   ========================================================= */

.topbar {
  position: sticky;
  top: 10px;
  z-index: 40;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-hero {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.brand-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  background: transparent !important;
  padding: 0;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(243, 211, 138, 0.1));
}

.brand-title {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(135deg, #fff9ee 0%, #f8e7bd 35%, #ebc676 72%, #fff2d5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.menu-toggle {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 211, 138, 0.16);
  font-size: 16px;
  font-weight: 900;
  flex: 0 0 auto;
}

/* =========================================================
   4. SIDE MENU
   ========================================================= */

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 320px);
  background: linear-gradient(180deg, rgba(12, 10, 7, 0.98), rgba(18, 16, 11, 0.98));
  border-right: 1px solid rgba(243, 211, 138, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 75;
}

.side-menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.side-menu-head {
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(243, 211, 138, 0.12);
}

.side-menu-user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.side-user-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 0 12px rgba(243, 211, 138, 0.45);
  flex: 0 0 auto;
}

.side-menu-user strong {
  display: block;
  font-size: 16px;
  color: #fff6e2;
  line-height: 1.2;
}

.side-menu-user span {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.35;
}

.side-menu-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.side-menu-link {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 800;
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 211, 138, 0.16);
}

.side-menu-link.primary {
  color: #1f1507;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 58%, #f7e8bc);
}

/* =========================================================
   5. SECTION TAB BAR
   ========================================================= */

.tabbar {
  position: sticky;
  top: 104px;
  z-index: 30;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.tab-btn {
  min-height: 52px;
  min-width: 0;
  width: 100%;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: 0.22s ease;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

.tab-btn.active {
  color: #fff6e2;
  background: linear-gradient(180deg, rgba(243, 211, 138, 0.16), rgba(216, 168, 75, 0.10));
  border-color: rgba(243, 211, 138, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

/* =========================================================
   6. HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(243, 211, 138, 0.16);
  background: #0d0b08;
  box-shadow: var(--shadow);
  min-height: 72vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 2.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.10) 0%, rgba(7, 7, 7, 0.24) 34%, rgba(7, 7, 7, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.24) 54%, rgba(7, 7, 7, 0.12) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 72vh;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
}

.hero-dots {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 8, 5, 0.38);
  border: 1px solid rgba(243, 211, 138, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dots span.active {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  transform: scale(1.18);
  box-shadow: 0 0 12px rgba(243, 211, 138, 0.45);
}

.hero-copy {
  max-width: 860px;
}

.hero-title {
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 860px;
  word-break: break-word;
}

.hero-title .gradient {
  background: linear-gradient(135deg, #fff9ee 0%, #f8e7bd 35%, #ebc676 72%, #fff2d5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.next-step-actions {
  margin-top: 14px;
}

/* =========================================================
   7. BUTTONS
   ========================================================= */

.btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: 0.22s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1f1507;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 58%, #f7e8bc);
  box-shadow: 0 12px 28px rgba(216, 168, 75, 0.22);
}

.btn-secondary {
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 211, 138, 0.16);
}

/* =========================================================
   8. CONTENT SECTIONS
   ========================================================= */

.section-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.section-card {
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(243, 211, 138, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 211, 138, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(14, 11, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 170px;
}

.section-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(243, 211, 138, 0.14);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.compact-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  color: #fff5df;
}

.compact-card span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.mini-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mini-pill {
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* =========================================================
   9. FOOTER
   ========================================================= */

.footer {
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(243, 211, 138, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 211, 138, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(14, 11, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 170px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.footer h3 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.footer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-meta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* =========================================================
   10. BACK TO TOP
   ========================================================= */

.scroll-top-btn {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #1f1507;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 58%, #f7e8bc);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  border: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 60;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   11. PWA INSTALL UI
   Floating mid-right install pill + iPhone helper hint
   ========================================================= */

.install-fab {
  position: fixed !important;
  right: 12px !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  z-index: 61 !important;

  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 20% 20%, rgba(243, 211, 138, 0.20), transparent 55%);
  border: 1px solid rgba(243, 211, 138, 0.22);

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 12px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.install-fab:hover {
  transform: translateY(-50%) scale(1.05) !important;
  border-color: rgba(243, 211, 138, 0.34);
}

.install-fab:active {
  transform: translateY(-50%) scale(0.96) !important;
}

.ios-install-hint {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 61;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 20% 20%, rgba(243, 211, 138, 0.16), transparent 52%);
  border: 1px solid rgba(243, 211, 138, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ios-install-hint span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.ios-install-hint button {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff8ed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  font-weight: 900;
}

/* =========================================================
   12. LARGE SCREENS
   ========================================================= */

@media (min-width: 901px) {
  .brand-logo {
    height: 54px;
    max-width: 170px;
  }

  .brand-title {
    font-size: 32px;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 14px;
  }
}

/* =========================================================
   13. TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .app {
    padding: 8px;
  }

  .shell {
    gap: 8px;
  }

  .topbar {
    top: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand-hero {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
    max-width: 112px;
  }

  .brand-title {
    font-size: 20px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .menu-toggle {
    width: 34px;
    min-width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 12px;
  }

  .tabbar {
    top: 96px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .tab-btn {
    min-height: 46px;
    font-size: 12px;
    padding: 8px 6px;
    border-radius: 14px;
  }

  .hero {
    min-height: 58vh;
    border-radius: 24px;
  }

  .hero-overlay {
    min-height: 58vh;
    padding: 12px;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 10px;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 2px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    font-size: 13px;
    padding: 0 10px;
  }

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

  .section-card {
    display: none;
    border-radius: 22px;
    padding: 14px;
  }

  .section-card.mobile-active {
    display: block;
  }

  .section-title {
    font-size: 23px;
  }

  .section-desc {
    font-size: 15px;
  }

  .compact-card {
    padding: 13px;
  }

  .compact-card strong {
    font-size: 15px;
  }

  .compact-card span {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer {
    border-radius: 22px;
    padding: 14px;
  }

  .footer h3 {
    font-size: 22px;
  }

  .footer p {
    font-size: 15px;
  }

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

  .footer-actions {
    justify-content: flex-start;
  }

  .install-fab {
    right: 8px !important;
    top: 58% !important;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .ios-install-hint {
    left: 8px;
    right: 8px;
    bottom: 14px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .ios-install-hint span {
    font-size: 11px;
  }
}

/* =========================================================
   14. SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
  .install-fab {
    right: 6px !important;
    top: 60% !important;
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    height: 38px;
    max-width: 98px;
  }

  .brand-title {
    font-size: 18px;
  }

  .menu-toggle {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .hero-title {
    font-size: 27px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .tab-btn {
    font-size: 10px;
  }

  .ios-install-hint {
    bottom: 12px;
  }

  .ios-install-hint span {
    font-size: 10px;
  }
}





/* =========================================================
   PREMIUM HOME FOOTER
   ========================================================= */

.home-footer{
  border-radius:28px;
  border:1px solid rgba(243,211,138,.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(243,211,138,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(14,11,8,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 16px 34px rgba(0,0,0,.18);
  overflow:hidden;
}

.home-footer__inner{
  padding:20px 18px 14px;
  display:grid;
  gap:16px;
}

.home-footer__intro{
  display:grid;
  gap:8px;
}

.home-footer__eyebrow{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(243,211,138,.14);
}

.home-footer__title{
  font-size:26px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:800;
  color:#fff7ea;
}

.home-footer__text{
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
  max-width:860px;
}

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

.home-footer__links a{
  min-height:46px;
  padding:0 12px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:#fff7ea;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(243,211,138,.16);
  transition:.2s ease;
}

.home-footer__links a:hover{
  transform:translateY(-1px);
  color:#1f1507;
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2) 58%, #f7e8bc);
  border-color:rgba(243,211,138,.26);
}

.home-footer__copyright{
  padding-top:2px;
}

.home-footer__copyright p{
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:12px;
  line-height:1.5;
  color:var(--muted2);
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
}

/* =========================================================
   RESPONSIVE FOOTER
   ========================================================= */

@media (max-width: 900px){
  .home-footer{
    border-radius:22px;
  }

  .home-footer__inner{
    padding:16px 14px 12px;
    gap:14px;
  }

  .home-footer__title{
    font-size:22px;
  }

  .home-footer__text{
    font-size:14px;
    line-height:1.6;
  }

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

  .home-footer__links a{
    min-height:42px;
    padding:0 8px;
    font-size:11px;
    border-radius:14px;
  }

  .home-footer__copyright p{
    min-height:34px;
    padding:0 10px;
    font-size:11px;
  }
}

@media (max-width: 520px){
  .home-footer__title{
    font-size:20px;
  }

  .home-footer__links a{
    font-size:10px;
    line-height:1.15;
  }

  .home-footer__copyright p{
    font-size:10px;
  }
}

