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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(to bottom, #1e1e1e 60px, transparent 200px),
    radial-gradient(ellipse at 20% 20%, rgba(242, 160, 183, 0.22), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(160, 140, 255, 0.18), transparent 50%),
    #1e1e1e;
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

/* ===================================
   TOPBAR (shared)
   =================================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: clamp(160px, 22vw, 210px);
  height: auto;
}

.topbar__email,
.topbar__link {
  color: #f2a0b7;
  font-size: 0.95rem;
  text-decoration: none;
}

.topbar__email:hover,
.topbar__link:hover {
  text-decoration: underline;
}

/* ===================================
   FOOTER (shared)
   =================================== */
.footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
}

.footer a {
  color: #888;
  text-decoration: none;
}

.footer a:hover {
  color: #b0b0c0;
}

/* ===================================
   WALKER HOME PAGE
   =================================== */
.walker-home .hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(48px, 10vh, 120px);
}

.walker-home .hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 3.6vw + 0.5rem, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
}

.walker-home .hero__subtitle {
  margin: 24px 0 0;
  color: #b0b0c0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.walker-home .hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.button-appstore {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #f2a0b7;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.button-appstore:hover {
  transform: translateY(-1px);
  background: #f7b5c7;
}

.link-secondary {
  color: #b0b0c0;
  font-size: 1rem;
  text-decoration: none;
}

.link-secondary:hover {
  color: #fff;
}

.walker-home .hero__art img {
  width: 100%;
  height: auto;
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .walker-home .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .walker-home .hero__actions {
    justify-content: center;
  }

  .walker-home .hero__art {
    order: -1;
  }

  .walker-home .hero__art img {
    max-width: 320px;
  }

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

  .footer {
    justify-content: center;
  }
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-main {
  margin-top: 48px;
}

.legal-card {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-content {
  font-size: 1rem;
}

.legal-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.legal-section-title {
  margin: 34px 0 0;
  font-size: 0.9rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2a0b7;
}

.legal-copy {
  margin-top: 14px;
  white-space: pre-line;
  color: #b0b0c0;
}

.legal-copy:first-of-type {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1200px);
  }
}
