/**
 * Marketing homepage (/) — loaded only when body.public-home-body is set.
 * Isolated from customer portal styles (body.customer-body + .customer-app-shell).
 */

body.public-home-body {
  margin: 0;
  min-height: 100vh;
  background-color: #f8fafc;
  color: #0f172a;
  font-family: 'Inter', 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Full-width shell — never use the narrow “phone portal” frame from customer-premium */
body.public-home-body #main-content.landing-main {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 520px) {
  body.public-home-body {
    padding: 0;
    display: block;
  }

  body.public-home-body #main-content.landing-main {
    max-width: 100%;
    min-height: 100vh;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

@media (min-width: 900px) {
  body.public-home-body {
    padding: 0;
  }
}

/* Root wrapper from resources/views/home.php */
body.public-home-body .public-home-root {
  isolation: isolate;
}
