/* Garmin Fenix 9 pre-order — full layout repair pass
   Accent #f28820 · Banner sides #c08953 · Dark warm base
*/

:root {
  --bg: #0c0a08;
  --bg-elev: #14110e;
  --bg-soft: #1a1612;
  --line: rgba(240, 228, 210, 0.1);
  --line-strong: rgba(240, 228, 210, 0.16);
  --text: #f3ebe0;
  --text-soft: #c4b5a3;
  --text-mute: #8f8172;
  --accent: #f28820;
  --accent-hover: #ff9a35;
  --accent-dim: rgba(242, 136, 32, 0.16);
  --accent-glow: rgba(242, 136, 32, 0.35);
  --banner: #c08953;
  --ink: #0a0a0a;
  --ok: #3ecf8e;
  --err: #ff6b6b;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --nav-h: 64px;
  --max: 1120px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

/* ——— NAV: black bar, white type, white CTA / black label ——— */
.site-top {
  position: relative;
  width: 100%;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.35em;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(0.88rem, 3.4vw, 1.02rem);
  color: #fff;
  line-height: 1.2;
  max-width: calc(100% - 9.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-sep {
  color: #fff;
  font-weight: 500;
  opacity: 0.85;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  color: #fff;
  transition: opacity 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    opacity: 0.7;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.nav-cta:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    background: var(--accent);
    color: #0a0a0a;
  }
}

/* Sticky from top through page (follows user at least until form and beyond) */

/* ——— BANNER + HERO ——— */
.site-top {
  background: var(--bg);
}

/* Mobile photo under black nav */
.mobile-hero-photo {
  display: block;
  width: 100%;
  line-height: 0;
  background: #0a0a0a;
}

.mobile-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 52vh;
  object-fit: cover;
  object-position: center 40%;
}

/* PC dual banner — hidden on mobile (mobile uses mobile-hero-photo + mobile-hero-copy) */
.top-banner {
  display: none;
  position: relative;
  width: 100%;
  background: var(--banner);
}

.top-banner-stage {
  display: block;
  background: var(--banner);
}

.top-banner-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-hero {
  display: none;
}

/* Mobile hero text under photo */
.mobile-hero-copy {
  padding: 1.35rem 1rem 1.5rem;
  background: var(--bg);
}

.mobile-hero-copy .hero-kicker,
.banner-hero .hero-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.mobile-hero-copy h1,
.mobile-hero-copy .hero-title-m,
.banner-hero h1,
.banner-hero .hero-title-d {
  margin: 0 0 0.75rem;
  font-size: clamp(2.15rem, 8vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
}

.mobile-hero-copy h1 em,
.mobile-hero-copy .hero-title-m em,
.banner-hero h1 em,
.banner-hero .hero-title-d em {
  font-style: normal;
  color: var(--accent);
}

.mobile-hero-copy .hero-lead,
.banner-hero .hero-lead {
  margin: 0 0 1.15rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 34ch;
}

.mobile-hero-copy .hero-actions,
.banner-hero .hero-actions {
  display: flex;
}

.mobile-hero-copy .btn {
  width: 100%;
}

/* Mobile photo above preorder form */
.mobile-preorder-photo {
  display: block;
  width: 100%;
  line-height: 0;
  background: var(--banner);
}

.mobile-preorder-photo img {
  width: 100%;
  height: auto;
  max-height: 46vh;
  object-fit: cover;
  object-position: center 45%;
}

/* Desktop: black nav ABOVE image (not overlay), hero panel RIGHT */
@media (min-width: 900px) {
  .nav {
    position: sticky;
    top: 0;
    background: #0a0a0a;
  }

  .logo {
    max-width: none;
    font-size: 1.02rem;
    overflow: visible;
  }

  .nav-links {
    display: flex;
  }

  .mobile-hero-photo,
  .mobile-hero-copy,
  .mobile-preorder-photo {
    display: none !important;
  }

  .top-banner {
    display: block;
    min-height: 560px;
    height: min(68vh, 680px);
    overflow: hidden;
  }

  .top-banner-stage {
    position: absolute;
    inset: 0;
  }

  .top-banner-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .banner-hero {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 560px;
    padding: 2rem 0;
    background: transparent;
  }

  .banner-hero-panel {
    width: min(100% - 2rem, 30rem);
    margin-right: max(1rem, calc((100vw - var(--max)) / 2));
    margin-left: auto;
    padding: 1.6rem 1.7rem 1.7rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 10, 8, 0.58);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 48px rgba(0, 0, 0, 0.35);
  }

  .banner-hero h1,
  .banner-hero .hero-title-d {
    font-size: clamp(2.4rem, 3.2vw, 3.1rem);
  }

  .banner-hero .btn {
    width: auto;
    min-width: 200px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .banner-hero-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 10, 8, 0.92);
  }
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background 160ms var(--ease-out), box-shadow 160ms var(--ease-out), color 160ms var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #1a0f05;
  box-shadow: 0 10px 28px var(--accent-glow);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--accent-hover);
  }
}

.btn-block {
  width: 100%;
}

/* Motion: always visible; soft polish when .is-in */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal.is-in {
  animation: reveal-in 420ms var(--ease-out) both;
}

@keyframes reveal-in {
  from {
    opacity: 0.4;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal.is-in {
    animation: none;
  }
}

/* ——— SECTIONS ——— */
section {
  padding: 2rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 2.75rem 0;
  }
}

.section-head {
  margin-bottom: 1.15rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 750;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 52ch;
}

/* Trust */
.trust {
  padding: 1.15rem 0;
  border-block: 1px solid var(--line);
  background: var(--bg-elev);
}

.trust-row {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 760px) {
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.trust-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.trust-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
}

.trust-item strong {
  display: block;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.trust-item span {
  color: var(--text-mute);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Benefits: two columns, no orphan empty right */
.benefits-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 800px) {
  .benefits-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .benefits-grid .section-head {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
  }
}

.feature-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 1.3rem 1.35rem 1.4rem;
  height: 100%;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  max-width: 48ch;
}

/* Expect */
.expect {
  background: var(--bg-elev);
  border-block: 1px solid var(--line);
}

.expect-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .expect-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
  }
}

.expect-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  max-height: 300px;
  background: #0c1016;
}

.expect-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-list {
  display: grid;
  gap: 0;
  margin-top: 0.85rem;
}

.expect-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.expect-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.expect-num {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--accent);
  padding-top: 0.2rem;
}

.expect-list strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.expect-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* Steps */
.steps-track {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .steps-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
}

.step {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-elev));
  padding: 1.2rem 1.15rem 1.3rem;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .step:hover {
    border-color: rgba(242, 136, 32, 0.4);
    transform: translateY(-2px);
  }
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* FAQ full width of container */
.faq {
  background: var(--bg-elev);
  border-block: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: none;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--text-soft);
  border-bottom: 1.5px solid var(--text-soft);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms var(--ease-out);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-item .faq-body {
  padding: 0 1.1rem 1.05rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.faq-item .faq-body p {
  margin: 0;
}

/* ——— FORM ——— */
.order {
  position: relative;
}

.order-shell {
  display: grid;
  gap: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(242, 136, 32, 0.12), transparent 55%),
    var(--bg-elev);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 900px) {
  .order-shell {
    grid-template-columns: minmax(260px, 0.88fr) 1.22fr;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }
}

.order-copy {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 0;
}

@media (min-width: 900px) {
  .order-copy {
    border-radius: 0;
    border-right: 1px solid var(--line);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}

.order-copy-visual {
  display: none;
}

@media (min-width: 900px) {
  .order-copy-visual {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .order-copy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
  }

  /* no full-image scrim — dimming only behind text block */
  .order-copy-visual::after {
    display: none;
  }
}

.order-copy-inner {
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (min-width: 900px) {
  .order-copy-inner {
    padding: 1.15rem 1.25rem 1.2rem;
    margin: 1.15rem 1rem 0;
    border-radius: 14px;
    /* thenenie only under text, not the whole photo */
    background: rgba(8, 6, 4, 0.72);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .order-copy {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) and (prefers-reduced-transparency: reduce) {
  .order-copy-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 6, 4, 0.9);
  }
}

.order-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.order-points {
  display: grid;
  gap: 0.65rem;
}

.order-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.order-points li svg {
  margin-top: 0.2rem;
  color: var(--accent);
}

.form {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .order-shell .form {
    padding: 1.45rem 1.5rem 1.5rem;
  }
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.field .error {
  color: var(--err);
  font-size: 0.8rem;
  display: none;
}

.field.is-invalid .error {
  display: block;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(255, 107, 107, 0.55);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(12, 10, 8, 0.55);
  color: var(--text);
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-mute) 50%),
    linear-gradient(135deg, var(--text-mute) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.field select option {
  background: #1a1612;
  color: var(--text);
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(242, 136, 32, 0.7);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: rgba(12, 10, 8, 0.78);
}

.field-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.form-legal {
  margin: 0;
  color: var(--text-mute);
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-status {
  display: none;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status.is-ok {
  display: block;
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.35);
  color: #9ce9c4;
}

.form-status.is-err {
  display: block;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.35);
  color: #ffb4b4;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.order-direct {
  margin-top: 0.15rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(12, 10, 8, 0.45);
}

.order-direct-title {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--text-soft);
}

.order-direct p {
  margin: 0.18rem 0;
  font-size: 0.93rem;
}

.order-direct a {
  color: var(--accent);
  font-weight: 600;
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .order-direct a:hover {
    color: var(--accent-hover);
  }
}

/* Footer */
.footer {
  padding: 1.6rem 0 1.35rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.85fr 1fr 0.9fr;
    gap: 1.5rem;
  }
}

.footer h3 {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer p,
.footer a {
  color: var(--text-mute);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer a {
  display: inline-block;
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer a:hover {
    color: var(--text);
  }
}

.footer-brand {
  font-weight: 700;
  color: var(--text) !important;
  font-size: 0.98rem !important;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  justify-content: space-between;
  color: var(--text-mute);
  font-size: 0.78rem;
}
